這篇文章主要介紹了php readfile下載大檔案失敗的解決方案,涉及php針對大檔案的分割及逐塊下載操作實現技巧,需要的朋友可以參考下
具體如下:
大檔案有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中readfile() 函數設定檔案大小的方法
php readfile()修改檔案上傳大小案例
readfile()函數設定php檔案大小方法