取消对PHP页面的请求会发生什么?

前端之家收集整理的这篇文章主要介绍了取消对PHP页面的请求会发生什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当一个长时间运行的 PHP文件正在执行,用户在浏览器中间取消页面请求时,其余脚本是否在服务器上运行?
一旦实现连接关闭,PHP通常会终止脚本执行:

PHP will not detect that the user has aborted the connection until an
attempt is made to send information to the client. Simply using an
echo statement does not guarantee that information is sent,see
flush().

您可以使用ignore_user_abort()保持脚本运行.

此外,还有一个默认的时间限制允许哪些脚本运行.您可能想要使用set_time_limit()覆盖.

原文链接:https://www.f2er.com/php/131568.html

猜你在找的PHP相关文章