运行PHP时,您希望它立即将HTML返回到浏览器,关闭连接(ish),然后继续处理......
以下在连接是HTTP / 1.1时有效,但在使用Apache 2.4.25
时没有启用mod_http2
,并且您有支持HTTP / 2的浏览器(例如Firefox 52或Chrome 57) )。
未发送Connection: close
标头会发生什么。
<?php
function http_connection_close($output_html = '') {
apache_setenv('no-gzip', 1); // Disable mod_gzip or mod_deflate
ignore_user_abort(true);
// Close session (if open)
while (ob_get_level() > 0) {
$output_html = ob_get_clean() . $output_html;
}
$output_html = str_pad($output_html, 1023); // Prompt server to send packet.
$output_html .= "\n"; // For when the client is using fgets()
header('Connection: close');
header('Content-Length: ' . strlen($output_html));
echo $output_html;
flush();
}
http_connection_close('<html>...</html>');
// Do stuff...
?>
有关此问题的类似方法,请参阅:
至于删除connection
标头的原因,nghttp2
库的文档(由Apache使用)指出:
Continue php script after connection close
HTTP/2 prohibits connection-specific header fields. The
following header fields must not appear: "Connection"...
因此,如果我们无法告诉浏览器通过此标题关闭连接,我们如何让它工作?
或者是否有另一种方式告诉浏览器它具有HTML响应的所有内容,并且它不应该等待更多数据到达。
答案 0 :(得分:1)
仅当Web服务器通过FastCGI
协议与PHP通信时,此答案才有效。
要将回复发送给用户(Web服务器)并在后台继续处理,而不涉及OS调用,请调用fastcgi_finish_request()
函数。
<?php
echo '<h1>This is a heading</h1>'; // Output sent
fastcgi_finish_request(); // "Hang up" with web-server, the user receives what was echoed
while(true)
{
// Do a long task here
// while(true) is used to indicate this might be a long-running piece of code
}
php-fpm
子进程也会忙碌,并且在处理完这个长时间运行的任务之前无法接受新请求。如果所有可用的php-fpm
子进程都忙,那么您的用户将会遇到挂起的页面。请谨慎使用。
nginx
和apache
服务器都知道如何处理FastCGI
协议,因此不需要将apache
服务器换成nginx
。< / p>
答案 1 :(得分:1)
您可以使用特殊的子域通过HTTP / 1.1为慢速PHP脚本提供服务。
您需要做的就是使用Apache的协议指令设置第二个使用HTTP / 1.1响应的VirtualHost:https://httpd.apache.org/docs/2.4/en/mod/core.html#protocols
这项技术的一大优势在于,在通过HTTP / 2流发送其他所有内容后,您的慢速脚本可以将一些数据发送到浏览器。