首页 > 代码库 > PHP定时执行任务的实现

PHP定时执行任务的实现

转自:http://www.topthink.com/topic/2945.html

 1 <?php 2 ignore_user_abort();//关掉浏览器,PHP脚本也可以继续执行. 3 set_time_limit(0);// 通过set_time_limit(0)可以让程序无限制的执行下去 4 $interval=60*30;// 每隔半小时运行 5  6 do{ 7 $fp= fopen("t4554.txt", "w"); 8 if($fp) {  9     $count=0; 10     for($i=1;$i<=4;$i++){ 11         $flag=fwrite($fp,"行".$i." : "."Hello World!\r\n"); 12         if(!$flag){13             echo"写入文件失败<br>";break;         14         }15         $count+=$flag; 16     } 17 }18 fclose($fp);19     //这里是你要执行的代码   20     sleep(‘2‘);// 等待5分钟21 }while(true);22 ?>