Регистрация Войти
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
NumberFormatter::getLocale
numfmt_get_locale
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
NumberFormatter::getLocale -- numfmt_get_locale — Get formatter locale
Описание
Объектно-ориентированный стиль
string NumberFormatter::getLocale ([ int $type ] )Процедурный стиль
string numfmt_get_locale ( NumberFormatter $fmt [, int $type ] )Get formatter locale name.
Список параметров
fmt -
NumberFormatter object.
type -
You can choose between valid and actual locale ( Locale::VALID_LOCALE, Locale::ACTUAL_LOCALE, respectively). The default is the actual locale.
Возвращаемые значения
The locale name used to create the formatter.
Примеры
Пример #1 numfmt_get_locale() example
$req = 'fr_FR_PARIS';
$fmt = numfmt_create( $req, NumberFormatter::DECIMAL);
$res_val = numfmt_get_locale( $fmt, Locale::VALID_LOCALE );
$res_act = numfmt_get_locale( $fmt, Locale::ACTUAL_LOCALE );
printf( "Requested locale name: %s\nValid locale name: %s\nActual locale name: %s\n",
$req, $res_val, $res_act );
Результат выполнения данного примера:
Requested locale name: fr_FR_PARIS Valid locale name: fr_FR Actual locale name: fr
Смотрите также
- numfmt_create() - Create a number formatter
- numfmt_get_error_code() - Get formatter's last error code.
Описание класса numberformatter, примеры использования класса numberformatter.
Описание на ru2.php.netОписание на php.ru