首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

NumberFormatter::getLocale

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

NumberFormatter::getLocale -- numfmt_get_locale — Get formatter locale

Description

Object oriented style

代码语言:javascript
复制
public string NumberFormatter::getLocale ([ int $type ] )

Procedural style

代码语言:javascript
复制
string numfmt_get_locale ( NumberFormatter $fmt [, int $type ] )

Get formatter locale name.

Parameters

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.

Return Values

The locale name used to create the formatter.

Examples

Example #1 numfmt_get_locale() example

代码语言:javascript
复制
<?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?);
?>

The above example will output:

代码语言:javascript
复制
Requested locale name: fr_FR_PARIS
Valid locale name: fr_FR
Actual locale name: fr

See Also

  • numfmt_create() - Create a number formatter
  • numfmt_get_error_code() - Get formatter's last error code.

← NumberFormatter::getErrorMessage

NumberFormatter::getPattern →

代码语言:txt
复制
 ? 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com