php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #44311 Bug in arithmetic operation: 173.42-173.42=2.8421709430404E-014
Submitted: 2008-03-02 13:25 UTC Modified: 2008-03-02 15:04 UTC
From: sawas at poczta dot onet dot pl Assigned:
Status: Not a bug Package: Math related
PHP Version: 4.4.8 OS: WinXP, Debian
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: sawas at poczta dot onet dot pl
New email:
PHP Version: OS:

 

 [2008-03-02 13:25 UTC] sawas at poczta dot onet dot pl
Description:
------------
I found a bug in arithmetic operation.
Simple subtraction of amounts gives inaccurate result.

Reproduce code:
---------------
$a = 160.00 + 5.90 + 7.52;
$b = 173.42;
print $a-$b;

Expected result:
----------------
0

Actual result:
--------------
2.8421709430404E-014

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-03-02 15:04 UTC] scottmac@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: Sun Oct 27 16:01:27 2024 UTC