gpt4 book ai didi

PHP关闭HTTP连接然后继续处理?

转载 作者:可可西里 更新时间:2023-11-01 16:38:18 25 4
gpt4 key购买 nike

为什么需要这个函数的最后一行才能使它工作?我不明白这是怎么回事。不过它确实有效。

function close_connection() {
// if we're using sessions this stops them from hanging on other requests
session_write_close();
// get the content length from the buffer (the whole point of the buffer)
header('Content-Length: 0');
// close the connection
header('Connection: close');
// flush the buffers to the screen
flush();

// connection closing doesn't work without this. I don't know why
echo ' ';
}

最佳答案

只要第一个字节输出到浏览器,就会发送 header 。
您也可以尝试使用 ob_end_flush();

关于PHP关闭HTTP连接然后继续处理?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17711263/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com