下載php文件失敗是因為readfile讀取文件的時候會把文件放入緩存,導致內(nèi)存溢出,其解決辦法就是實現(xiàn)分段下載,并限制下載速度即可。
通海網(wǎng)站建設公司創(chuàng)新互聯(lián)建站,通海網(wǎng)站設計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為通海成百上千提供企業(yè)網(wǎng)站建設服務。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務好的通海做網(wǎng)站的公司定做!
推薦:《PHP視頻教程》
解決PHP下載大文件失敗,并限制下載速度
1.問題:
PHP在使用readfile函數(shù)定義下載文件時候,文件不可以過大,否則會下載失敗,文件損壞且不報錯;
2.原因:
這個是因為readfile讀取文件的時候會把文件放入緩存,導致內(nèi)存溢出;
3.解決:分段下載,并限制下載速度;
<?php //設置文件最長執(zhí)行時間 set_time_limit(0); if (isset($_GET['filename']) && !empty($_GET['filename'])) { $file_name = $_GET['filename']; $file = __DIR__ . '/assets/' . $file_name; } else { echo 'what are your searching for?'; exit(); } if (file_exists($file) && is_file($file)) { $filesize = filesize($file); 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); // 打開文件 $fp = fopen($file, 'rb'); // 設置指針位置 fseek($fp, 0); // 開啟緩沖區(qū) ob_start(); // 分段讀取文件 while (!feof($fp)) { $chunk_size = 1024 * 1024 * 2; // 2MB echo fread($fp, $chunk_size); ob_flush(); // 刷新PHP緩沖區(qū)到Web服務器 flush(); // 刷新Web服務器緩沖區(qū)到瀏覽器 sleep(1); // 每1秒 下載 2 MB } // 關(guān)閉緩沖區(qū) ob_end_clean(); fclose($fp); } else { echo 'file not exists or has been removed!'; } exit();
網(wǎng)頁題目:為什么下載php文件失敗
標題鏈接:http://m.rwnh.cn/article18/cpdigp.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供微信小程序、ChatGPT、關(guān)鍵詞優(yōu)化、外貿(mào)建站、搜索引擎優(yōu)化、手機網(wǎng)站建設
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)