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

$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: p_w_upload; filename="' . $encoded_filename . '"');
} else if (preg_match("/Firefox/", $ua)) {
    header('Content-Disposition: p_w_upload; filename*="utf8\'\'' . $filename . '"');
} else {
    header('Content-Disposition: p_w_upload; filename="' . $filename . '"');
}
print 'ABC';

分享名称:解决跨浏览器下PHP下载文件名中的中文乱码问题
转载注明:http://csdahua.cn/article/jcdjso.html
扫二维码与项目经理沟通

我们在微信上24小时期待你的声音

解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流