MessageFormatter::getLocale
msgfmt_get_locale
(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)
MessageFormatter::getLocale -- msgfmt_get_locale — フォーマッタを作成した際のロケールを取得する
説明
オブジェクト指向型
手続き型
フォーマッタを作成した際のロケールを取得します。
パラメータ
formatter
-
フォーマッタリソース。
戻り値
ロケール名を返します。
例
例1 msgfmt_get_locale() の例
<?php
$fmt = msgfmt_create('en_US', "Number {0,number}");
echo msgfmt_get_locale($fmt);
?>
例2 オブジェクト指向の例
<?php
$fmt = new MessageFormatter('en_US', "Number {0,number}");
echo $fmt->getLocale();
?>
上の例の出力は以下となります。
en_US
+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