php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #52894 number_format fails with large values
Submitted: 2010-09-20 17:53 UTC Modified: 2010-09-21 18:57 UTC
From: info at tellmatic dot org Assigned:
Status: Not a bug Package: *Math Functions
PHP Version: 5.2.14 OS: linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: info at tellmatic dot org
New email:
PHP Version: OS:

 

 [2010-09-20 17:53 UTC] info at tellmatic dot org
Description:
------------
wrong output, not as give, drifts a lot!


Test script:
---------------
number_format("1234.560000", 50, '.', '');




Expected result:
----------------
expected output should be 1234.56 with additional 48 zeros! and not a 'random value'.


Actual result:
--------------
== 1234.55999999999994543031789362430572509765625000000000

????
can't be!


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2010-09-20 18:24 UTC] rasmus@php.net
-Status: Open +Status: Bogus
 [2010-09-20 18:24 UTC] rasmus@php.net
Floating point values have a limited precision. Hence a value might 
not have the same string representation after any processing. That also
includes writing a floating point value in your script and directly 
printing it without any mathematical operations.

If you would like to know more about "floats" and what IEEE
754 is, read this:
http://docs.sun.com/source/806-3568/ncg_goldberg.html
 
Thank you for your interest in PHP.

.
 [2010-09-21 14:48 UTC] info at tellmatic dot org
number_format should 'format' numbers, not recalculate, or? thats how i understand the function.
 [2010-09-21 18:57 UTC] rasmus@php.net
Yes, that is all number_format does.  But, you asked it for 50 digits of 
precision for 1234.560000 which just isn't possible for computers to represent 
given the way they they handle floating point numbers.  It has nothing to do 
with number_format.  You will see the same if you do:

ini_set('precision',50);
echo 1234.560000;

If you need super-precise floating point, you can't use the computers built-in 
floating point support.  You will need to use http://php.net/gmp instead.  The 
big drawback is that it is much much slower than the computer's native floating 
point support.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 11:01:28 2024 UTC