|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2004-04-30 02:49 UTC] bichinhoverde at spwinternet dot com dot br
Description: ------------ When I put an empty string '' as the decimal point in the number_format function, it uses the dot '.' as decimal point. The function works well for the thousands separator. Reproduce code: --------------- print number_format(1234.5678, 2, '', ''); Expected result: ---------------- 123457 Actual result: -------------- 1234.57 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 19:00:01 2025 UTC |
I have just discovered that: number_format(11.99, 2, FALSE, ',') which used to display 11.99 now displays 1,199 I'm not sure whether FALSE ought to be supported as a "use the default" rather than equivalent to the empty string, but surely at worst this should give: 1199 My preference, for what it's worth, is that FALSE should take the default ('.'), but '' should work better than it does? [I only have 4.3.8 to test against but no mention of this is made in the 4.3.9 release notes]