首頁  >  文章  >  後端開發  >  php大檔案下載失敗解決方案

php大檔案下載失敗解決方案

巴扎黑
巴扎黑原創
2018-05-12 14:32:294155瀏覽

這篇文章主要介紹了php readfile下載大文件失敗的解決方法,涉及php針對大文件的分割及逐塊下載操作實現技巧,需要的朋友可以參考下

本文實例講述了php readfile下載大檔案失敗的解決方法。分享給大家供大家參考,具體如下:

大檔案有200多M,只下載了200K就提示下載完成,且不報錯。

原因是PHP記憶體有限制,需要改塊下載,就是把大檔案切塊後逐塊下載

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 "<h1>Content error</h1><p>The file does not exist!</p>";

以上是php大檔案下載失敗解決方案的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn