PHP执行定时任务的简单实现


PHP #定时任务2014-04-09 23:04
建立外部引入变量文件 switch.php  内容如下:

<?php
return 1;//1执行脚本 0退出执行脚本

代码如下:
<?php
	ignore_user_abort();//关闭浏览器后,继续执行php代码
	set_time_limit(0);//程序执行时间无限制
	$sleep_time = 5;//多长时间执行一次
	$switch = include 'switch.php';
	while($switch){
		$switch = include 'switch.php';
		$fp = fopen('test.txt','a+');
		fwrite($fp,"http://yige.org/php/ $switch \n");
		fclose($fp);
		sleep($sleep_time);
	}
	exit();

相关文章

粤ICP备11097351号-1