iconv_get_encoding
(PHP 4 >= 4.0.5, PHP 5, PHP 7, PHP 8)
iconv_get_encoding — iconv 拡張モジュールの内部設定変数を取得する
パラメータ
type
-
オプション
type
の値は以下のどれかとすることができます。- all
- input_encoding
- output_encoding
- internal_encoding
戻り値
成功時に内部設定変数の現在の設定、失敗した場合に false
を返します。
type
が省略されるか、"all"が指定された場合、
iconv_get_encoding() は上記変数全てを格納した
配列を返します。
例
例1 iconv_get_encoding() の例
<pre>
<?php
iconv_set_encoding("internal_encoding", "UTF-8");
iconv_set_encoding("output_encoding", "ISO-8859-1");
var_dump(iconv_get_encoding('all'));
?>
</pre>
上の例の出力は以下となります。
Array ( [input_encoding] => ISO-8859-1 [output_encoding] => ISO-8859-1 [internal_encoding] => UTF-8 )
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google