PHP自動執行程序

/****config.php***/

<?php
     return 1;      //須要中止時改爲0
?>

/******************/

ignore_user_abort();//關掉瀏覽器,PHP腳本也能夠繼續執行.
set_time_limit(0);// 經過set_time_limit(0)可讓程序無限制的執行下去
$interval=60*30;// 每隔半小時運行
do{
    $run = include 'config.php';
    if(!$run) die('process abort');
    //這裏是你要執行的代碼
    $file = "cron.txt";
    $content = "這是第".$i."次執行!\r\n";
    $fp = fopen($file, "a+");    
    fwrite($fp,$content);
    fclose($fp);
    $i++;
    sleep($interval);// 每隔半小時運行
     
}while(true);
相關文章
相關標籤/搜索