php-src/ext/intl/tests/formatter_format_currency.phpt

51 lines
1.0 KiB
Plaintext
Raw Normal View History

2008-07-07 22:51:04 +00:00
--TEST--
numfmt_format_currency() icu <= 4.2
2008-07-07 22:51:04 +00:00
--SKIPIF--
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
<?php if(version_compare(INTL_ICU_VERSION, '4.3', '<') != 1) print 'skip'; ?>
2008-07-07 22:51:04 +00:00
--FILE--
<?php
/*
* Format a number using misc currencies/locales.
*/
/*
2008-09-04 19:59:37 +00:00
* TODO: doesn't pass on ICU 3.6 because 'ru' and 'uk' locales changed
* currency formatting.
*/
2008-07-07 22:51:04 +00:00
function ut_main()
{
$locales = array(
'en_UK' => 'GBP',
'en_US' => 'USD',
'ru' => 'RUR',
'uk' => 'UAH',
'en' => 'UAH'
);
$res_str = '';
$number = 1234567.89;
foreach( $locales as $locale => $currency )
{
$fmt = ut_nfmt_create( $locale, NumberFormatter::CURRENCY );
$res_str .= "$locale: " . var_export( ut_nfmt_format_currency( $fmt, $number, $currency ), true ) . "\n";
}
return $res_str;
}
include_once( 'ut_common.inc' );
// Run the test
ut_run();
?>
--EXPECT--
2008-07-07 22:51:04 +00:00
en_UK: '£1,234,567.89'
en_US: '$1,234,567.89'
ru: '1 234 567,89 р.'
uk: '1 234 567,89 ₴'
en: '₴1,234,567.89'