知识屋:更实用的电脑技术知识网站
所在位置:首页 > 编程技术 > PHP编程

浏览器关闭后,能继续执行的php函数(ignore_user_abort)

发布时间:2012-08-02 23:39:07作者:知识屋

希望关闭浏览器后,程序能继续在后台跑,这种情况下需要用到ignore_user_abort()函数

多的不说,直接上代码:


ignore_user_abort(true); //设置客户端断开连接时是否中断脚本的执行
set_time_limit(0);
$file = '/tmp/ignore_user.txt';
if(!file_exists($file)) {
file_put_contents($file);
}
if(!$handle = fopen($file,'a+b')){
echo "not open file :".$file;
exit;
}
$i=0;
while($i<100) {
$time = date("Y-m-d H:i:s",time());
echo $time."n";
if(fwrite($handle,$time."n")===false) {
echo "not write file:".$file;
exit;
}
echo "write file time:".$time."n";
$i++;
sleep(2);
}
fclose($handle);

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜