Home  >  Article  >  Backend Development  >  请求终止问题

请求终止问题

WBOY
WBOYOriginal
2016-06-06 20:49:121218browse

当我在浏览器请求一个响应时间非常长的请求的时候,在请求还未响应的时候按esc中止了请求,请问web服务器对在处理的请求是如何处理的?

回复内容:

当我在浏览器请求一个响应时间非常长的请求的时候,在请求还未响应的时候按esc中止了请求,请问web服务器对在处理的请求是如何处理的?

默认情况下php在用户断开请求时生命周期就会结束了, 不会再继续执行下面的代码了

可以在代码中加入ignore_user_abort(true)忽略用户的断开

当然你还要考虑php处理超时的问题, set_time_limit()等等

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn