目录

PHP ignore_user_abort() 函数

❮ PHP 其他参考

示例

设置为 false(默认)- 客户端中止将导致脚本停止运行:

<?php
ignore_user_abort();
?>

上面代码的输出可能是:

0


定义和用法

ignore_user_abort() 函数设置用户在断开连接时是否应中止脚本执行。


语法

ignore_user_abort( setting)

参数值

Parameter Description
setting Optional. TRUE ignores user aborts in a script (the script will continue to run). This is FALSE by default, meaning that client aborts will cause the script to stop running

技术细节

返回值: 返回用户中止设置的先前值
PHP 版本: 4+

❮ PHP 其他参考