程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> IE6下php header實現文件下載錯誤

IE6下php header實現文件下載錯誤

編輯:關於PHP編程

使用php header實現文件下載時,在IE6下總是提示不能下載,谷歌浏覽器正常, 因此應該是IE的問題,IE下有個bug,微軟官網有說明。錯誤消息:“Internet Explorer cannot download a file”(Internet Explorer 不能下載文件),有個辦法可以很好的解決,

看代碼好了:

下面整理了一個函數

 代碼如下 復制代碼

if(strstr($_SERVER["HTTP_USER_AGENT"],"MSIE")==false) {
 header("Cache-Control: no-cache");
 header("Pragma: no-cache");
}

header('Cache-Control: public, must-revalidate, max-age=0');
header('Accept-Ranges: bytes');
header("Content-Type: application/force-download");
header("Content-Type: application/download");
header("Content-Type: application/octet-stream");
if(!empty($content_type)){
 header("Content-Type: ".$content_type);
}
header("Content-Transfer-Encoding: binary");
header('Content-Disposition:attachment;filename="'.rawurlencode($filename).'"');

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved