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. ?>