downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<NumberFormatterNumberFormatter::formatCurrency>
Last updated: Thu, 26 Jun 2008

NumberFormatter::create

numfmt_create

NumberFormatter::__construct

(No version information available, might be only in CVS)

NumberFormatter::__construct — Create a number formatter

Description

Object oriented style (method)

static NumberFormatter NumberFormatter::create ( string $locale , integer $style [, string $pattern ] )

Procedural style

NumberFormatter numfmt_create ( string $locale , integer $style [, string $pattern ] )

Object oriented style (constructor):

NumberFormatter::__construct ( string $locale , integer $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 in case chosen style requires pattern.

Return Values

Returns NumberFormatter object or FALSE on error.

Examples

Example #1 numfmt_create() example

<?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() example

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

1.234.567,891
millicentoquarantadue


add a noteadd a note User Contributed Notes
Create a number formatter
There are no user contributed notes for this page.




<NumberFormatterNumberFormatter::formatCurrency>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs