浏览器关闭后,能继续执行的php函数(ignore_user_abort)
程序员文章站
2022-04-28 15:14:36
多的不说,直接上代码: 复制代码 代码如下: ignore_user_abort(true); //设置客户端断开连接时是否中断脚本的执行 set_time_limit(0...
多的不说,直接上代码:
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);
复制代码 代码如下:
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]日志处理error_log()函数和配置使用
下一篇: 一个好用的分页函数
推荐阅读
-
PHP计划任务之关闭浏览器后仍然继续执行的函数_PHP教程
-
PHP计划任务之关闭浏览器后仍然继续执行的函数
-
PHP计划任务之关闭浏览器后仍然继续执行的函数
-
浏览器关闭后,能继续执行的php函数(ignore_user_abort)
-
PHP计划任务之关闭浏览器后仍然继续执行的函数
-
浏览器关闭后,能继续执行的php函数(ignore_user_abort)_PHP教程
-
php计划任务 PHP计划任务之关闭浏览器后仍然继续执行的函数
-
PHP计划任务之关闭浏览器后仍然继续执行的函数
-
PHP计划任务之关闭浏览器后仍然继续执行的函数_php技巧
-
浏览器关闭后,能继续执行的php函数(ignore_user_abort)_php技巧