PHP在使用readfile函数定义下载文件时候,文件不可以过大,否则会下载失败,网页访问不了的情况。 这个是因为readfile读取文件的时候会把文件放入缓存,导致内存溢出。所以要求分段下载, 刷新PHP缓冲区,并限制下载速度。
public function DownLoadFile(){
$file_path = I("file_path");
$file_name = I("file_name");
//检查文件是否存在
if (! file_exists ($file_path)) {
header('HTTP/1.1 404 NOT FOUND');
} else {
$filesize = filesize($file_path);
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . $filesize);
header('Content-Disposition: attachment; filename=' . $file_name);
ob_end_clean();
ob_start();
//以只读和二进制模式打开文件
$file = fopen ( $file_path, "rb" );
// 分段读取文件
while (!feof($file)) {
$chunk_size = 1024 * 1024 * 2; // 2MB
echo fread($file, $chunk_size);
ob_flush(); // 刷新PHP缓冲区到Web服务器
flush(); // 刷新Web服务器缓冲区到浏览器
sleep(1); // 每1秒 下载 2 MB
}
// 关闭缓冲区
ob_end_clean();
fclose ( $file );
exit ();
}
}