当前位置:首页 > PHP教程 > php应用 > 列表

PHP Header下载文件在IE文件名中文乱码问题

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-13 14:05:33 浏览: 评论:0 

解决PHP Header下载文件在IE文件名中文乱码有两种常见的,一种是是把页面编码改成utf8,另一种是对中文url进入urlencode编码就可以解决了.

解决方案一,我的页面是utf-8编码,代码如下:

  1. $filename = "中文.txt"
  2. $ua = $_SERVER["HTTP_USER_AGENT"]; 
  3. $encoded_filename = urlencode($filename); 
  4. $encoded_filename = str_replace("+""%20"$encoded_filename); 
  5. header('Content-Type: application/octet-stream'); 
  6. if (preg_match("/MSIE/"$ua)) { 
  7. header('Content-Disposition: attachment; filename="' . $encoded_filename . '"'); 
  8. else if (preg_match("/Firefox/"$ua)) { 
  9. header('Content-Disposition: attachment; filename*="utf8''' . $filename . '"'); 
  10. else { 
  11. header('Content-Disposition: attachment; filename="' . $filename . '"'); 

解决方法二,将文件名先urlencode一下再放入header,如下.

  1. <?php 
  2. $file_name = urlencode($_REQUEST['filename']); 
  3. header("Pragma: public"); header("Expires: 0"); 
  4. header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); 
  5. header("Content-Type: application/force-download"); 
  6. header('Content-Type: application/vnd.ms-excel; charset=utf-8'); 
  7. header("Content-Transfer-Encoding: binary"); 
  8. //开源代码phpfensi.com 
  9. header('Content-Disposition: attachment; filename='.$file_name); 
  10. echo stripslashes($_REQUEST['content']); 
  11. ?>

Tags: Header下载文件 PHP中文乱码

分享到: