我是靠谱客的博主 火星上小蚂蚁,最近开发中收集的这篇文章主要介绍浏览器关闭后,能继续执行的php函数(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);

最后

以上就是火星上小蚂蚁为你收集整理的浏览器关闭后,能继续执行的php函数(ignore_user_abort)的全部内容,希望文章能够帮你解决浏览器关闭后,能继续执行的php函数(ignore_user_abort)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(152)

评论列表共有 0 条评论

立即
投稿
返回
顶部