标签:
<?php
ignore_user_abort(); // 后台运行
set_time_limit(0); // 取消脚本运行时间的超时上限
do{
sleep(60); // 休眠1分钟
}while(true);
?>
<?php
ignore_user_abort(); // 后台运行
set_time_limit(0); // 取消脚本运行时间的超时上限
echo ‘start.‘;
while(!file_exists(‘close.txt‘)){
$fp = fopen(‘test.txt‘,‘a+‘);
fwrite($fp,date("Y-m-d H:i:s") . " 成功了!rn");
fclose($fp);
sleep(10);
}
echo ‘end.‘;
?>
标签:
原文地址:http://www.cnblogs.com/lookphp/p/5276530.html