PHP實現檔案下載詳解_PHP

來源:互聯網
上載者:User
關鍵字 PHP 檔案下載
1、php下載原理圖

2、檔案下載源碼

代碼如下:


<?php
$file_name="哈哈.jpg";//需要下載的檔案
$file_name=iconv("utf-8","gb2312","$file_name");
$fp=fopen($file_name,"r+");//下載檔案必須先要將檔案開啟,寫入記憶體
if(!file_exists($file_name)){//判斷檔案是否存在
echo "檔案不存在";
exit();
}
$file_size=filesize("a.jpg");//判斷檔案大小
//返回的檔案
Header("Content-type: application/octet-stream");
//按照位元組格式返回
Header("Accept-Ranges: bytes");
//返迴文件大小
Header("Accept-Length: ".$file_size);
//彈出用戶端對話方塊,對應的檔案名稱
Header("Content-Disposition: attachment; filename=".$file_name);
//防止伺服器瞬時壓力增大,分段讀取
$buffer=1024;
while(!feof($fp)){
$file_data=fread($fp,$buffer);
echo $file_data;
}
//關閉檔案
fclose($fp);
?>

3、檔案編碼問題解決方案

  如果檔案名稱是中文,php的函數不能識別中文檔案名稱,一般如果程式編碼為utf-8,php的函數比較古老,只能識別gb2312編碼的中文,所以把中文用iconv(“原編碼”,”要轉成的編碼”,”要轉碼的字串”)函數可以轉碼。

  比如,把一個字串從utf-8轉碼為gb2312

  $file_name=iconv(“utf-8”,”gb2312”,”$file_name”);

4使用header方式實現檔案下載源碼

附上整理的下載方法,已封裝好,可直接使用:

代碼如下:


function download_by_path($path_name, $save_name){
ob_end_clean();
$hfile = fopen($path_name, "rb") or die("Can not find file: $path_name\n");
Header("Content-type: application/octet-stream");
Header("Content-Transfer-Encoding: binary");
Header("Accept-Ranges: bytes");
Header("Content-Length: ".filesize($path_name));
Header("Content-Disposition: attachment; filename=\"$save_name\"");
while (!feof($hfile)) {
echo fread($hfile, 32768);
}
fclose($hfile);
}

以上就是本文的全部內容了,小夥伴們是否對php實現檔案下載有了初步的認識了呢,自己多做做嘗試,結合本文給出的簡單例子,讓自己的項目更完善吧。

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.