PHP头条
热点:

php下载文件不显示进度条解决方案


php下载文件不显示进度条
我有一个程序 要求把下载的文件夹重命名于是在网上找了段代码 如下:

header("Content-type:application/octet-stream");
header("Accept-Ranges:bytes");
header("Content-Type:application/force-download");
header("Content-Disposition:inline;filename=".$filename);
header("Accept-Length:".filesize($File));
@readfile($File);//读取文件到输出缓存


可是下载文件时只显示打开文件多少多少。。。 不显示下载进度啊

------解决方案--------------------
可能是浏览器的原因吧,你换火狐浏览器试试!
------解决方案--------------------
换个浏览器试试,用火狐呢

www.phpzy.comtrue/phprm/51656.htmlTechArticlephp下载文件不显示进度条解决方案 php下载文件不显示进度条 我有一个程序 要求把下载的文件夹重命名于是在网上找了段代码 如下: header("Content-type:application/octet-stream"); header("Accept-...

相关文章

PHP之友评论

今天推荐