博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
彻底解决跨浏览器下PHP下载文件名中的中文乱码问题
阅读量:5952 次
发布时间:2019-06-19

本文共 1190 字,大约阅读时间需要 3 分钟。

上面是一个比较通用的解决方案(据说xp+IE7会有问题,未验证)。

这个问题是在使用时遇到的,:

private function set_headers() {        $ua = $_SERVER["HTTP_USER_AGENT"];        $filename = $this->filename . ".xls";        $encoded_filename = urlencode($filename);        $encoded_filename = str_replace("+", "%20", $encoded_filename);             header("Pragma: public");        header("Expires: 0");        header("Cache-Control: must-revalidate, post-check=0, pre-check=0");        header("Content-Type: application/force-download");        header("Content-Type: application/octet-stream");        //header("Content-Type: application/vnd.ms-excel;charset=UTF-8");        header("Content-Type: application/download");;        if (preg_match("/MSIE/", $ua)) {              header('Content-Disposition: attachment; filename="' . $encoded_filename . '"');        } else if (preg_match("/Firefox/", $ua)) {              header('Content-Disposition: attachment; filename*="utf8\'\'' . $filename . '"');        } else {              header('Content-Disposition: attachment; filename="' . $filename . '"');        }        header("Content-Transfer-Encoding: binary ");    }

 

转载于:https://www.cnblogs.com/jiji262/archive/2012/09/21/2697205.html

你可能感兴趣的文章
CAS-认证流程
查看>>
006android初级篇之jni数据类型映射
查看>>
Java 集合框架查阅技巧
查看>>
apache配置虚拟主机
查看>>
CollectionView水平和竖直瀑布流的实现
查看>>
前端知识复习一(css)
查看>>
spark集群启动步骤及web ui查看
查看>>
Maven学习笔记二:常用命令
查看>>
利用WCF改进文件流传输的三种方式
查看>>
程序员的素养
查看>>
Spring学习总结(2)——Spring的常用注解
查看>>
关于IT行业人员吃的都是青春饭?[透彻讲解]
查看>>
钱到用时方恨少(随记)
查看>>
mybatis主键返回的实现
查看>>
org.openqa.selenium.StaleElementReferenceException
查看>>
Android Intent传递对象为什么要序列化?
查看>>
数论之 莫比乌斯函数
查看>>
linux下查找某个文件位置的方法
查看>>
python之MySQL学习——数据操作
查看>>
Harmonic Number (II)
查看>>