php-src/ext/standard/tests/strings/moneyformat.phpt

20 lines
353 B
PHP

--TEST--
money_format test
--SKIPIF--
<?php
if (!function_exists('money_format')) {
die("SKIP money_format - not supported\n");
}
if (setlocale(LC_MONETARY, 'en_US') === false) {
die('skip en_US locale not available');
}
?>
--FILE--
<?php
setlocale(LC_MONETARY, 'en_US');
var_dump( money_format("X%nY", 3.1415));
?>
--EXPECT--
string(7) "X$3.14Y"