關於php使用header實現下載功能解決方案

來源:互聯網
上載者:User
關於php使用header實現下載功能
test1.php關鍵代碼,這裡省略連結資料庫相關代碼,只有從資料庫中讀出相關代碼
$sql_select = "SELECT * FROM `file_information` order by id DESC";
$sql_mysql = mysql_query($sql_select,$connected);
?>


















while($sql_fetch = mysql_fetch_array($sql_mysql)){?> }?>
ID 縮圖 簡介 路徑 長傳時間 操作
" width="80" heihgt="80"/>
">下載



test2.php代碼:(由於header("Content-Type: text/html;charset=UTF-8")給予了類型,所以其他html代碼全部刪除了,並且沒有將test2.php中的php代碼寫在test1.php中,因為test1.php有有輸出,會影響header()設定類型
header("Content-Type: text/html;charset=UTF-8");
if(!empty($_GET['download_id']))
{
$download_id = $_GET['download_id'];
$download_id = explode("@@@",$download_id);

$download_path = $download_id[1];
if(!is_null($download_path))
{
$filename = basename($download_path);//擷取檔案名稱
$download_file = fopen($download_path,"r");
if($download_file)
{
header("Content-Type:application/octet-stream");
header("Accept-Ranges:bytes");
header("Accept-Length:".filesize($download_path));
header("Content-Disposition: attachment; filename=".$filename);
echo fread($download_file,filesize($download_path));
fclose($download_file);
exit;
}
else
{
echo "The file must be not exist";
}

}
}
?>


這麼做其實是可以的,而且下載功能也可以執行,經過測試,在IE9,chrome,firefox上面都可以運行,jpg檔案,png檔案,txt檔案,swf檔案都可以下載並查看,但是基於chrome核心的360極速瀏覽器確出現問題,當圖片是png格式時,可以下載並開啟,當圖片是jpg格式時,可以下載,大小卻為0B,打不開圖片,這應該是瀏覽器問題吧?不過chrome都可以為什麼它不可以??求好銀不思賜教why,thank you!(ps:360極速瀏覽器的極速模式,相容模式,IE9模式均不可以下載jpg格式圖片)
------解決方案--------------------
if(file_exists($download_file)){
//
}
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.