PHP Conference Japan 2024

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_LOCALELocale::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

参见

添加注释

用户贡献的注释

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