Proxy.php 337 B

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