日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

彻底解决跨浏览器下PHP下载文件名中的中文乱码问题

發布時間:2023/12/4 php 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 彻底解决跨浏览器下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'; ?>

上面是一個比較通用的解決方案(據說xp+IE7會有問題,未驗證)。

這個問題是在使用CI-Excel-Generation-Library時遇到的,解決辦法如下:

private function set_headers() {$ua = $_SERVER["HTTP_USER_AGENT"];$filename = $this->filename . ".xls";$encoded_filename = urlencode($filename);$encoded_filename = str_replace("+", "%20", $encoded_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/octet-stream");//header("Content-Type: application/vnd.ms-excel;charset=UTF-8");header("Content-Type: application/download");;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 . '"');}header("Content-Transfer-Encoding: binary ");}

?

轉載于:https://www.cnblogs.com/jiji262/archive/2012/09/21/2697205.html

總結

以上是生活随笔為你收集整理的彻底解决跨浏览器下PHP下载文件名中的中文乱码问题的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。