PHP Header下载文件在IE文件名中文乱码问题
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-13 14:05:33 浏览: 评论:0
解决PHP Header下载文件在IE文件名中文乱码有两种常见的,一种是是把页面编码改成utf8,另一种是对中文url进入urlencode编码就可以解决了.
解决方案一,我的页面是utf-8编码,代码如下:
- $filename = "中文.txt";
- $ua = $_SERVER["HTTP_USER_AGENT"];
- $encoded_filename = urlencode($filename);
- $encoded_filename = str_replace("+", "%20", $encoded_filename);
- header('Content-Type: application/octet-stream');
- 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 . '"');
- }
解决方法二,将文件名先urlencode一下再放入header,如下.
- <?php
- $file_name = urlencode($_REQUEST['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/vnd.ms-excel; charset=utf-8');
- header("Content-Transfer-Encoding: binary");
- //开源代码phpfensi.com
- header('Content-Disposition: attachment; filename='.$file_name);
- echo stripslashes($_REQUEST['content']);
- ?>
Tags: Header下载文件 PHP中文乱码
相关文章
- ·在php中中文乱码解决方法(2013-11-29)
- ·PHP读MYSQL中文乱码的解决方法(2014-09-11)
- ·php中文乱码问题和MySql出现中文乱码的解决方法(2014-09-11)
- ·php ord 函数与中文乱码解决方法(2014-09-19)
- ·php生成二维码中文乱码问题解决方法(2014-09-20)
- ·php中文乱码问题解决方法(2014-09-21)
- ·PHP中文文件名输出乱码解决方法(2014-09-21)
- ·解决PHP中文乱码的4项小技巧(2015-04-04)
- ·PHP DOMDocument保存xml时中文出现乱码(2015-04-08)
- ·php中文乱码怎么办如何让浏览器自动识别utf-8(2020-08-27)
- ·解决php接收shell返回的结果中文乱码问题(2020-08-29)
- ·PHP中使用file_get_contents抓取网页中文乱码问题解决方法(2021-05-03)
- ·php生成二维码时出现中文乱码的解决方法(2021-05-03)
- ·PHP中文乱码解决方案(2021-05-15)
- ·PHP MPDF中文乱码的解决方式(2021-06-29)
- ·Linux php 中文乱码的快速解决方法(2021-08-04)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)