Calling number_format(-0.00)
returns string(1) “0”
, however calling number_format(-0.01)
returns string(2) “-0”
.
As number_format()
is commonly used for formatting numbers for human-readable display, this behaviour is unexpected.
This RFC proposes keeping number_format()
consistent and not displaying the sign when a number is rounded to zero.
There was an argument that all floating point logic in PHP follows IEEE 754, where negative zero is valid.
However number_format()
already prevents negative zero, so this isn't the case.
This change has BC concerns for anybody relying on the current behaviour, but this is thought to be incredibly minor and not unrealistic for a point release.
PHP 7.2
Simple Yes/No vote that doesn't change the language itself so requires 50% + 1 votes to get 'accepted'.
Pull request: https://github.com/php/php-src/pull/2508
Initial discussion that led to this RFC's creation: https://externals.io/thread/522
Discussion thread: https://externals.io/thread/800
Voting thread: https://externals.io/thread/828