In the middle of a problem is the submission of the Chinese file name directly into the header under IE will become garbled, the solution is to urlencode the file name first and then put in the header, as follows.
Copy CodeThe code is as follows:
$file _name = urlencode ($_request[' filename ');
Header ("Pragma:public"); Header ("expires:0");
Header ("Cache-control:must-revalidate, Post-check=0, pre-check=0");
Header ("Content-type:application/force-download");
Header (' Content-type:application/vnd.ms-excel; Charset=utf-8 ');
Header ("Content-transfer-encoding:binary");
Header (' content-disposition:attachment; filename= '. $file _name);
echo stripslashes ($_request[' content ');
?>
Solve the PHP header download file in the IE file name garbled there are two common, one is to change the page encoding to UTF8, the other is the Chinese URL into the UrlEncode code can be solved.
Solution One (my page is utf-8 encoded):
Copy CodeThe code is as follows:
$filename = "Chinese. txt";
$ua = $_server["Http_user_agent"];
$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. '"');
}
Workaround Two
UrlEncode the file name first and then put it in the header, as follows.
The code is as follows:
Copy CodeThe code is as follows: $file _name = urlencode ($_request[' filename ');
Header ("Pragma:public"); Header ("expires:0");
Header ("Cache-control:must-revalidate, Post-check=0, pre-check=0");
Header ("Content-type:application/force-download");
Header (' Content-type:application/vnd.ms-excel; Charset=utf-8 ');
Header ("Content-transfer-encoding:binary");
Header (' content-disposition:attachment; filename= '. $file _name);
echo stripslashes ($_request[' content ');
?>
http://www.bkjia.com/PHPjc/323364.html www.bkjia.com true http://www.bkjia.com/PHPjc/323364.html techarticle in the middle of a problem is the submission of the Chinese file name directly into the header under IE will become garbled, the solution is to urlencode the file name first and then put in the header, as follows. Copy Code ...