#php 中国語エンコード変換方法:php 中国語エンコーディングの変換方法: 1. iconv 関数を使用します。コードは [string iconv (string $in_, string $out_, string $str)]; 2. [mb_convert_encoding] 関数を使用します。
1.
iconvstring iconv ( string $in_charset , string $out_charset , string $str )
2 番目のパラメータ: ターゲットのエンコーディング
3 番目のパラメータ: 変換される文字列
$filename='我爱你中国'; $filename = iconv('gbk','utf-8',$filename);
分析: $filename を gbk から utf8
2 に変換します。mb_convert_encodingstring mb_convert_encoding ( string $str , string $to_encoding [, mixed $from_encoding ] )
2 番目のパラメータ: ターゲット エンコーディング
3 番目のパラメータ: 元のコンテンツ エンコーディング
$filename='我爱你中国'; $filename = mb_convert_encoding($filename,'GBK','UTF-8');
分析: $filename を utf8 から gbk に変換
三、mb_detect_encoding文字エンコーディングの表示$filename='我爱你中国';
$encode = mb_detect_encoding($filename, array("ASCII","UTF-8","GB2312","GBK","BIG5"));
echo $encode;die;
php プログラミング# ## (ビデオ)#########
以上がPHP中国語エンコード変換の問題の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。