文件下载阻止了一切

时间:2017-08-15 11:49:34

标签: php download

我正在使用以下代码下载文件:

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' . $new_filename . '"');
header('Content-Transfer-Encoding: binary');
header('Connection: Keep-Alive');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . $size);


readfile($download_url);             
exit;

其中$download_url是文件路径。文件正在下载完美,但我无法在首次下载时下载同一页面上的下一个文件,甚至导航到其他页面,直到下载完成或取消。

2 个答案:

答案 0 :(得分:0)

找到答案Here。我必须在输出文件之前关闭会话。

session_write_close();
readfile($download_url);

会话一次只能由一个PHP进程打开,发出session_start()命令的任何其他请求将在等待访问会话数据文件时阻塞。

答案 1 :(得分:-1)

我在Wamp下尝试过,但是有一些问题。

经过大量搜索,我最终得到了这个有效的代码

$file = 'test.jpg';

if (file_exists($file)) {

    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename="'.basename($file).'"');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    readfile($file);
    exit;
}