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

NumberFormatter::create

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

NumberFormatter::create -- numfmt_create -- NumberFormatter::__construct — Create a number formatter

Description

Object oriented style (method)

代码语言:javascript
复制
public static NumberFormatter NumberFormatter::create ( string $locale , int $style [, string $pattern ] )

Procedural style

代码语言:javascript
复制
NumberFormatter numfmt_create ( string $locale , int $style [, string $pattern ] )

Object oriented style (constructor):

public NumberFormatter::__construct ( string $locale , int $style , string $pattern )

Creates a number formatter.

Parameters

locale

Locale in which the number would be formatted (locale name, e.g. en_CA).

style

Style of the formatting, one of the format style constants. If NumberFormatter::PATTERN_DECIMAL or NumberFormatter::PATTERN_RULEBASED is passed then the number format is opened using the given pattern, which must conform to the syntax described in ? ICU DecimalFormat documentation or ? ICU RuleBasedNumberFormat documentation, respectively.

pattern

Pattern string if the chosen style requires a pattern.

Return Values

Returns NumberFormatter object or FALSE on error.

Examples

Example #1 numfmt_create() example

代码语言:javascript
复制
<?php
$fmt?=?numfmt_create(?'de_DE',?NumberFormatter::DECIMAL?);
echo?numfmt_format($fmt,?1234567.891234567890000)."\n";
$fmt?=?numfmt_create(?'it',?NumberFormatter::SPELLOUT?);
echo?numfmt_format($fmt,?1142)."\n";
?>

Example #2 NumberFormatter::create() example

代码语言:javascript
复制
<?php
$fmt?=?new?NumberFormatter(?'de_DE',?NumberFormatter::DECIMAL?);
echo?$fmt->format(1234567.891234567890000)."\n";
$fmt?=?new?NumberFormatter(?'it',?NumberFormatter::SPELLOUT?);
echo?$fmt->format(1142)."\n";
?>

The above example will output:

代码语言:javascript
复制
1.234.567,891
millicentoquarantadue

See Also

  • numfmt_format() - Format a number
  • numfmt_parse() - Parse a number

← NumberFormatter

NumberFormatter::formatCurrency →

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

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

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com