跨浏览器PHP下载文件名中的中文乱码问题解决方法
程序员文章站
2023-02-17 08:30:03
本文实例讲述了跨浏览器php下载文件名中的中文乱码问题解决方法。分享给大家供大家参考。具体如下:
复制代码 代码如下:
本文实例讲述了跨浏览器php下载文件名中的中文乱码问题解决方法。分享给大家供大家参考。具体如下:
复制代码 代码如下:
<?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: 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';
?>
$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';
?>
希望本文所述对大家的php程序设计有所帮助。
推荐阅读
-
php中json_encode处理gbk与gb2312中文乱码问题的解决方法
-
php做下载文件的实现代码及文件名中乱码解决方法
-
跨浏览器PHP下载文件名中的中文乱码问题解决方法
-
解析如何在PHP下载文件名中解决乱码的问题
-
php中强制下载文件的代码(解决了IE下中文文件名乱码问题)
-
如何解决ASP.NET下载时的中文文件名乱码,与TXT文件中存在代码两个问题
-
跨浏览器PHP下载文件名中的中文乱码问题解决方法_php技巧
-
解析如何在PHP下载文件名中解决乱码的问题_PHP
-
php中json_encode处理gbk与gb2312中文乱码问题的解决方法
-
跨浏览器PHP下载文件名中的中文乱码问题解决方法_php技巧