PHP forced to download the file code (solve IE under the Chinese file name garbled problem) _php skills

Source: Internet
Author: User
Tags urlencode
Encountered in the middle of a problem is submitted to the Chinese file name directly into the header in IE will become garbled, the solution is to urlencode the filename first and then into the header, as follows.
Copy Code code as follows:

<?php
$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 IE filename Chinese garbled there are two common, one is to change the page code to UTF8, the other is the Chinese URL into the UrlEncode code can be solved.
Solution One (my page is Utf-8 encoding):

Copy Code code 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 filename before putting it in the header, as follows.
The code is as follows:

Copy Code code as follows:
<?php
$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 ');
?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.