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

巴扎黑
發布: 2023-03-15 06:34:02
原創
4154 人瀏覽過

這篇文章主要介紹了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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!