【发布时间】:2013-11-17 09:59:22
【问题描述】:
我有这个代码:
$file="http://domain/path/file.flv?hash=hashcode";
header('Content-Type: video/x-flv');
header('Content-Disposition: attachment; filename=myvideo.flv' );
readfile($file);
当我访问 download.php 时,它开始下载,并在浏览器中显示:
1 KB、2 KB、... 1MB、2MB、...
我想知道的是下载文件时如何在浏览器中显示下面的文字,如下所示:
2MB/29MB 剩余 5 分钟...
我的意思是,在浏览器底部(正在下载文件的位置)- Chrome,或在“下载”窗口中 - Firefox
我试过这个:
header('Content-Length: ' . filesize($file));
但它不起作用。
【问题讨论】:
-
这是我确定的答案,它会帮助你。 stackoverflow.com/questions/6052208/…
标签: php file download readfile filesize