编程开发 > PHP > 文章内容

PHP教程:phpreadfile下载大文件失败的解决方法

2017-6-26编辑:daibenhua

  本文实例讲述了php readfile下载大文件失败的解决方法。分享给大家供大家参考,具体如下:

  大文件有200多M,只下载了200K就提示下载完成,且不报错。

  原因是PHP内存有限制,需要改为按块下载,就是把大文件切块后逐块下载。

  ?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
if (file_exists($file))
{
  if (FALSE!== ($handler = fopen($file, 'r')))
  {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename($file));
    header('Content-Transfer-Encoding: chunked'); //changed to chunked
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    //header('Content-Length: ' . filesize($file)); //Remove
    //Send the content in chunks
    while(false !== ($chunk = fread($handler,4096)))
    {
      echo $chunk;
    }
  }
  exit;
}
echo "

Content error

The file does not exist!

"
;

 

  PHP实现远程下载文件到本地

  PHP文件下载类

  php做下载文件的实现代码及文件名中乱码解决方法

  php使浏览器直接下载pdf文件的方法

  php实现的支持断点续传的文件下载类

  php中强制下载文件的代码(解决了IE下中文文件名乱码问题)

PHP教程:老生常谈PHP文件写入和读取(必看篇)

热点推荐

登录注册
触屏版电脑版网站地图