2

可能重复:
提前关闭连接
如何在 PHP 中响应 ajax 请求后继续处理?

我需要在 ajax 操作中断开连接:

$response = getResponse($params);
echo $response; // don't make user to wait
flushAndDropConnection();
someLongActionsFor5Seconds();

我该怎么做?

4

1 回答 1

2

只需让用户断开连接,但让脚本运行。

ignore_user_abort(true);
ob_start();
echo "response";
$size = ob_get_length();
header("Content-Length: $size");
header('Connection: close');
ob_end_flush();
ob_flush();
flush();
if (session_id()) session_write_close();
//your long running action here
于 2012-07-30T13:54:45.253 回答