HTTP2和继续执行PHP

时间:2017-03-17 15:26:58

标签: php apache http2 nghttp2

运行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...

?>

有关此问题的类似方法,请参阅:

  1. Lexik translation bundle
  2. close a connection early
  3. Continue processing after closing connection
  4. 至于删除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响应的所有内容,并且它不应该等待更多数据到达。

2 个答案:

答案 0 :(得分:1)

如何向用户返回HTTP响应并恢复PHP处理

仅当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子进程都忙,那么您的用户将会遇到挂起的页面。请谨慎使用。

nginxapache服务器都知道如何处理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流发送其他所有内容后,您的慢速脚本可以将一些数据发送到浏览器。