响应后继续处理 PHP
处理需要立即响应的请求时,可能需要在发送初始响应后继续处理 PHP到客户端。
您的脚本从服务器接收参数,生成响应,并需要防止服务器将消息视为已传递才可以继续处理。虽然将消息保存在数据库中并使用 cron 作业可能是一种解决方案,但它对于实时响应来说并不理想。
要解决此问题,您可以使用以下 PHP 函数:
ignore_user_abort(true); // Not required but recommended set_time_limit(0); // No time limit ob_start(); // Handle the request and generate the response echo $response; // Send the response header('Connection: close'); header('Content-Length: '.ob_get_length()); ob_end_flush(); @ob_flush(); flush(); fastcgi_finish_request(); // Required for PHP-FPM // Continue PHP processing after the response has been sent die(); // **Important** to ensure cleanup if set_time_limit(0) is used
通过利用这些函数,您可以向客户端发送响应,关闭连接,并继续执行 PHP 脚本而不被中断。这允许立即响应,同时仍然启用消息的异步处理。
以上是向客户端发送响应后如何继续 PHP 处理?的详细内容。更多信息请关注PHP中文网其他相关文章!