一聚教程网:一个值得你收藏的教程网站

热门教程

IE6下php header实现文件下载错误

时间:2022-06-24 23:37:30 编辑:袖梨 来源:一聚教程网

看代码好了:

下面整理了一个函数

 代码如下 复制代码

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).'"');

热门栏目