Proxy.php 314 B

123456789101112131415161718
  1. <?php
  2. namespace Heanup\Config;
  3. use Heanup\Frame\Config;
  4. use Heanup\Library\Curl;
  5. class Proxy extends Config
  6. {
  7. public static function getData($section = null)
  8. {
  9. $data=Curl::get("http://myhome.97admin.com:5010/get/");
  10. $data=json_decode($data,true);
  11. return $data['proxy'];
  12. }
  13. }