Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
MessageFormatter::getLocale - Get the locale for which the formatter was created.
Вернуться к: MessageFormatter
MessageFormatter::getLocale
msgfmt_get_locale
(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)
MessageFormatter::getLocale -- msgfmt_get_locale — Get the locale for which the formatter was created.
Описание
Объектно-ориентированный стиль
public
string
MessageFormatter::getLocale
( void
)
Процедурный стиль
Get the locale for which the formatter was created.
Список параметров
-
formatter
-
The formatter resource
Возвращаемые значения
The locale name
Примеры
Пример #1 msgfmt_get_locale() example
<?php
$fmt = msgfmt_create('en_US', "Number {0,number}");
echo msgfmt_get_locale($fmt);
?>
Пример #2 OO example
<?php
$fmt = new MessageFormatter('en_US', "Number {0,number}");
echo $fmt->getLocale();
?>
Результат выполнения данного примера:
en_US
Вернуться к: MessageFormatter