php 解决跨浏览器下PHP下载文件名中的中文乱码问题
解决跨浏览器下PHP下载文件名中的中文乱码问题 [代码片段(20行)]
<?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'; ?>
- 上一篇:php 计算文件大小的php代码
- 下一篇:php+mysql分页类
收藏文章
精彩图集
精彩文章