php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #43906 wrong calculation from function number_format
Submitted: 2008-01-22 11:21 UTC Modified: 2008-01-22 12:56 UTC
From: b dot paulsen at cms-mail dot de Assigned:
Status: Not a bug Package: *Math Functions
PHP Version: 4.4.8 OS: Linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
11 + 38 = ?
Subscribe to this entry?

 
 [2008-01-22 11:21 UTC] b dot paulsen at cms-mail dot de
Description:
------------
Hello,

if you do follow code you get a wrong float back:

echo number_format(19.80,20,",",".");

19,80000000000000071054

thanks

Reproduce code:
---------------
echo number_format(19.80,20,",",".");

Expected result:
----------------
19,80000000000000071054


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-01-22 12:56 UTC] johannes@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.

.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 08:01:30 2024 UTC