1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/standard/tests/strings/bug29538.phpt
2020-02-03 22:52:20 +01:00

11 lines
185 B
PHP

--TEST--
Bug #29538 (number_format and problem with 0)
--FILE--
<?php
echo number_format(0.25, 2, '', ''), "\n";
echo number_format(1234, 2, '', ',');
?>
--EXPECT--
025
1,23400