Unsupported scripts and control panel web app for a hosting company
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

build-support-db.php 255B

123456789101112
  1. #!/usr/bin/php -q
  2. <?PHP
  3. chdir('/home/utd/control/sup');
  4. $files = glob('*.php');
  5. chdir('/home/utd/scripts');
  6. foreach ($files as $file) {
  7. if ((int)$file != 0 || (int)$file > 900) {
  8. system('./get-support-article.php '.substr($file,0,3));
  9. }
  10. }
  11. ?>