sleep.php
ignore_user_abort(); //即使Client断开(如关掉浏览器),PHP脚本也可以继续执行.
set_time_limit(0); // 执行时间为无限制,php默认的执行时间是30秒,通过set_time_limit(0)可以让程序无限制的执行下去
$interval=10; // 每隔10秒运行
do{
include('cron-config.php'); // 引入文件
if($cron_config['run']=="false") break; // 如果$cron_config['run']为false,就跳出循环,执行下面的语句 echo "跳出循环";
$fp = fopen('test.txt','a');
fwrite($fp,'test');
fclose($fp);
sleep($interval); // 等待10秒
}while(true);
echo "跳出循环";
?>
cron-config.php
$cron_config['run']="true";
?>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号