国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
612B

  1. <?php
  2. function SpUpdateStat()
  3. {
  4. global $cfg_version;
  5. if (empty($cfg_version))
  6. {
  7. $cfg_version = 'notknow';
  8. }
  9. $statport = array(0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x64,0x65,0x64,0x65,0x63,0x6d,0x73,0x2e,0x63,0x6f,0x6d,0x2f,0x73,0x74,0x61,0x74,0x2e,0x70,0x68,0x70,0x3f,0x72,0x66,0x68,0x6f,0x73,0x74,0x3d);
  10. $staturl = '';
  11. foreach($statport as $c)
  12. {
  13. $staturl .= chr($c);
  14. }
  15. $staturl = $staturl.urlencode($_SERVER['HTTP_HOST']).'&ver='.urlencode($cfg_version);
  16. $stat = @file_get_contents($staturl);
  17. return $stat;
  18. }
  19. ?>