2014年11月24日 星期一

to periodically Search file in php on web pages


<   ? php
$url = 'http://www.example.com.tw/it/unnessaryfile.doc';
$array = get_headers($url);
$string = $array[0];
if(strpos($string,"200"))
  {
    echo 'url exists';
    $myfile = fopen("C:/Users/%username%/Desktop/Server_found_unnessaryfile.txt", "w") or die("Unable to open file!");
    $txt = "請檢查Server,同步到非必要檔案至網頁?????????\n";
    fwrite($myfile, $txt);
    fclose($myfile);
  }
  else
  {
    echo 'url does not exist';
  }
?  >
 上面網頁存成 URLCheck.php



存成ServerFileCheck.bat檔,讓開機時,自動呼叫執行  URLCheck.php  ,每天開機時自動檢查,是否有多餘非必要檔案(Server_found_unnessaryfile.txt)。

%comspec% /c php "E:\Apache\htdocs\URLCheck.php" 




開機啟動執行機碼,自動呼叫執行  E:\ServerFileCheck.bat
REG ADD "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /V "URLCheck_php" /t REG_SZ /F /D "E:\ServerFileCheck.bat"