php 定时任务
//忽略用户操作 ignore_user_abort(); //取消时间限制 set_time_limit(0); //定时执行时间 $time=20; //定时访问页面 $url='http://'.$_SERVER["HTTP_HOST"].$_SERVER['REQUEST_URI']; /** * your code */ //执行休眠 sleep($time); 执行访问 file_get_contents($url);
本文为看恩吧原创文章,转载无需和我联系,但请注明来自knsay.com