码迷,mamicode.com
首页 > Web开发 > 详细

解决跨浏览器下PHP下载文件名中的中文乱码问题

时间:2014-12-09 20:02:04      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:中文乱码

$ua = $_SERVER["HTTP_USER_AGENT"];
$filename = "中文 文件名.txt";
$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 . ‘"‘);
}
print ‘ABC‘;


本文出自 “风吹雪落” 博客,请务必保留此出处http://cbsizhang.blog.51cto.com/7436956/1587930

解决跨浏览器下PHP下载文件名中的中文乱码问题

标签:中文乱码

原文地址:http://cbsizhang.blog.51cto.com/7436956/1587930

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!