【发布时间】:2015-04-11 04:35:46
【问题描述】:
我有以下 PHP 脚本输出文件以供最终用户下载:
session_write_close();
ob_end_clean();
set_time_limit(0);
if($file = fopen($path, 'rb'))
{
header("Cache-Control: no-cache");
header("Pragma: no-cache");
header("Accept-Ranges: bytes");
header("Content-length: ".(string)(filesize($path)));
header("Content-Disposition: attachment; filename=\"".basename($path)."\"");
header("Content-type: application/octet-stream");
header("Content-Transfer-Encoding: binary");
header("Connection: close");
fpassthru($file);
fclose($file);
}
用户可以很好地下载文件,但是当下载大文件时,网络浏览器不会显示进度条以及剩余要下载的文件百分比。它只显示当前下载的 MB 数。
所以我很好奇,我应该在标题中更改什么以启用此下载进度?
PS。截图如下:
【问题讨论】:
标签: php http download http-headers