(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)
Format a currency value
public string NumberFormatter::formatCurrency ( float $value, string $currency )
Object oriented style
Procedural style
Format the currency value according to the formatter rules.
Parameters:
fmt
NumberFormatter object.
value
The numeric currency value.
currency
The 3-letter ISO 4217 currency code indicating the currency to use.
Returns:
String representing the formatted currency value.
Examples:
numfmt_format_currency() example
1 2 3 4 5 6 7 8 | <?php $fmt = numfmt_create( 'de_DE' , NumberFormatter::CURRENCY ); echo numfmt_format_currency( $fmt , 1234567.891234567890000, "EUR" ). "\n" ; echo numfmt_format_currency( $fmt , 1234567.891234567890000, "RUR" ). "\n" ; $fmt = numfmt_create( 'ru_RU' , NumberFormatter::CURRENCY ); echo numfmt_format_currency( $fmt , 1234567.891234567890000, "EUR" ). "\n" ; echo numfmt_format_currency( $fmt , 1234567.891234567890000, "RUR" ). "\n" ; ?> |
OO example
1 2 3 4 5 6 7 8 | <?php $fmt = new NumberFormatter( 'de_DE' , NumberFormatter::CURRENCY ); echo $fmt ->formatCurrency(1234567.891234567890000, "EUR" ). "\n" ; echo $fmt ->formatCurrency(1234567.891234567890000, "RUR" ). "\n" ; $fmt = new NumberFormatter( 'ru_RU' , NumberFormatter::CURRENCY ); echo $fmt ->formatCurrency(1234567.891234567890000, "EUR" ). "\n" ; echo $fmt ->formatCurrency(1234567.891234567890000, "RUR" ). "\n" ; ?> |
See also:
Please login to continue.