NumberFormatter::getLocale

numfmt_get_locale

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)

NumberFormatter::getLocale -- numfmt_get_locale获取格式化程序区域设置

描述

面向对象风格

public NumberFormatter::getLocale(int $type = ULOC_ACTUAL_LOCALE): string|false

过程化风格

numfmt_get_locale(NumberFormatter $formatter, int $type = ULOC_ACTUAL_LOCALE): string|false

获取格式化程序区域设置名称。

参数

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( "请求的区域设置名称:%s\n有效的区域设置名称:%s\n实际的区域设置名称:%s\n",
$req, $res_val, $res_act );
?>

上面的例子将输出

Requested locale name: fr_FR_PARIS
Valid locale name: fr_FR
Actual locale name: fr

参见

添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top