Use mb_list_encodings() to check if an encoding is supported by mbstring before using its functions for it.
現在、以下の文字エンコーディングが mbstring
モジュールによりサポートされています。文字エンコーディングは、
mbstring
関数の encoding
パラメータで指定することが可能です。
以下の文字エンコーディングがこの PHP 拡張モジュールでサポートされています。
* は、正規表現でも使えるエンコーディングであることを表します。
エンコーディング名を指定する php.ini エントリには、
"auto
" および
"pass
" を指定することもできます。
エンコーディング名を指定する mbstring
関数にも、"auto
" を指定することができます。
"pass
" が指定された場合、
文字エンコーディングの変換は行われません。
"auto
" が指定された場合、この文字列は
言語設定 (NLS)
ごとに定義されたエンコーディングのリストに変換されます。たとえば、言語設定が
Japanese
の場合は
"ASCII,JIS,UTF-8,EUC-JP,SJIS
"
です。
mb_detect_order() も参照ください。
Use mb_list_encodings() to check if an encoding is supported by mbstring before using its functions for it.
Apart of this list, GB2312 encoding is also supported.
It is Chinese Simplified encoding which is now superseded by GB18030, but GB2312 is not in the list.
If you try to us it, the result will allright even if it is not in the list.
Regards,
Tomolimo