summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/bug28228.phpt
blob: 4223f4bc15f242844d7821cec8e1326b6f54f8b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #28228 (number_format() does not allow empty decimal separator)
--FILE--
<?php
echo number_format(1234.5678, 4, '', '') . "\n";
echo number_format(1234.5678, 4, NULL, ',') . "\n";
echo number_format(1234.5678, 4, 0, ',') . "\n";
echo number_format(1234.5678, 4);
?>
--EXPECT--
12345678
1,234.5678
1,23405678
1,234.5678