i18n_loc_get_default

(no version information, might be only in CVS)

i18n_loc_get_default -- デフォルトのロケールを取得する

説明

string i18n_loc_get_default ( void )

この関数は、デフォルトのロケールを返します。これは、 PHP が何らかの機能をローカライズする際に使用します。 このロケールは、setlocale() やシステム設定の影響を受けないことに注意しましょう。

返り値

現在のロケールを表す文字列を返します。

例 1. i18n_loc_get_default() の例

<?php

// デフォルトのロケールを取得します
echo i18n_loc_get_default();

// 新しいロケールを設定し……
i18n_loc_set_default('pt_PT');

// ……それを表示します。
echo i18n_loc_get_default();

?>

上の例の出力は以下となります。

en_US_POSIX
pt_PT

参考

i18n_loc_set_default()