php多言語(UTF-8符号化)導出Excel、CSV乱符号化解決方法の導出UTF-8符号化のExcel、CSV
8979 ワード
変換元:https://www.cnblogs.com/kclteam/p/5278926.html中国語、繁体字中国語、韓国語、日本など、さまざまな言語の使用者が存在する可能性があり、開発時にUTF-8コードを選択し、開発が順調で、問題ありません.昨日csvエクスポート機能を作りましたが、エクスポートしたものは完全に散らかっています.
mb_の設定convert_encoding($content,“gb 2312”,“UTF-8”)の場合中国語は正常です
mb_の設定convert_encoding($content,"shift-jis","UTF-8")の場合日本語は正常です
mb_の設定convert_encoding($content,“UTF-8”,“UTF-8”)の場合、どちらも正常ではありません
Googleで理由を聞いてみると、マイクロソフトのcsvなどはuft-8符号化ではなくUTF-16 LE符号化をサポートしているという意味なので、以下の設定をします.
各種言語正常表示
以下は完全なfunctionで、2バイトのファイル名(例えば日本語や中国語のファイル名)が文字化されないことをサポートします.
転載先:https://www.cnblogs.com/taozi32/p/8677486.html
mb_の設定convert_encoding($content,“gb 2312”,“UTF-8”)の場合中国語は正常です
mb_の設定convert_encoding($content,"shift-jis","UTF-8")の場合日本語は正常です
mb_の設定convert_encoding($content,“UTF-8”,“UTF-8”)の場合、どちらも正常ではありません
Googleで理由を聞いてみると、マイクロソフトのcsvなどはuft-8符号化ではなくUTF-16 LE符号化をサポートしているという意味なので、以下の設定をします.
1 // BOM
2 echo(chr(255).chr(254));
3 echo(mb_convert_encoding($content,"UTF-16LE","UTF-8"));
// bom
//UTF-8 BOM
$output = pack('H*','EFBBBF');
各種言語正常表示
以下は完全なfunctionで、2バイトのファイル名(例えば日本語や中国語のファイル名)が文字化されないことをサポートします.
1 php
2 /**
3 * CSV
4 * @param $data
5 * @param $file_name
6 */
7 function export_csv($data,$file_name='')
8 {
9
10 $file_name = $file_name.'_'.date('YmdHi').'.csv';
11 $encoded_filename = urlencode($file_name);
12 $encoded_filename = str_replace("+","%20",$encoded_filename );
13 $content = array_to_string($data);
14 header('Cache-control: private');
15 // ,
16 $ua = $_SERVER["HTTP_USER_AGENT"];
17 if (preg_match("/MSIE/", $ua)) {
18 header('Content-Disposition: attachment; filename="' . $encoded_filename . '"');
19 }
20 else if (preg_match("/Firefox/", $ua)) {
21 header('Content-Disposition: attachment; filename*="utf8\'\'' . $file_name . '"');
22 }
23 else {
24 header('Content-Disposition: attachment; filename="' . $file_name . '"');
25 }
26 if(function_exists('mb_convert_encoding')){
27 header('Content-type: text/csv; charset=UTF-16LE');
28 // BOM
29 echo(chr(255).chr(254));
30 echo(mb_convert_encoding($content,"UTF-16LE","UTF-8"));
31 exit;
32 }
33 }
34 /**
35 *
36 * @param $result
37 */
38 function array_to_string($result)
39 {
40 if(empty($result)){
41 return i(" !^_^");
42 }
43 $size_result = count($result);
44 for($i = 0 ; $i < $size_result ; $i++) {
45 $data .= $result[$i]."
";
46 }
47 return $data;
48 }
49 ?>
転載先:https://www.cnblogs.com/taozi32/p/8677486.html