(PHP 5 >= 5.3.0,PHP 7,PHP 8,PECL intl >= 1.0.0)
NumberFormatter::getLocale -- numfmt_get_locale — 获取格式化程序区域设置
面向对象风格
过程化风格
获取格式化程序区域设置名称。
formatter
NumberFormatter 对象。
type
您可以选择有效和实际区域设置(分别为 Locale::VALID_LOCALE
、Locale::ACTUAL_LOCALE
)。默认值为实际区域设置。
用于创建格式化程序的区域设置名称,或在失败时返回 false
。
示例 #1 numfmt_get_locale() 示例
<?php
$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