1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 00:48:25 +02:00
Files
archived-php-src/ext/standard/tests/strings/moneyformat.phpt
T
2019-07-22 11:39:52 +02:00

21 lines
421 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));
?>
--EXPECTF--
Deprecated: Function money_format() is deprecated in %s on line %d
string(7) "X$3.14Y"