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

WBOY
Release: 2016-06-13 13:29:25
Original
880 people have browsed it

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);//读取文件到输出缓存


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

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

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template