gpt4 book ai didi

PHP 下载会阻止其余请求

转载 作者:可可西里 更新时间:2023-10-31 23:56:17 25 4
gpt4 key购买 nike

我正在使用一个非常简单的脚本从我的服务器下载文件:

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($fichero));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);

它工作正常,但当浏览器正在下载文件时,我无法浏览该站点或从同一服务器下载其他文件。我必须等到它完成。它发生在 Chrome 和 Firefox 中,我也使用其他方法用 PHP 下载文件,但所有这些我都有这个问题......所以我想这是服务器的问题??

非常感谢您:)

最佳答案

这是因为您使用的是 PHP session ,当一个用户的 session 在一个请求中打开时,同一 session 不能在另一个请求中打开。

在 readfile() 之前执行 session_write_close()。

关于PHP 下载会阻止其余请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7077635/

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