php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #37683 Comparison operator fails with certain numbers
Submitted: 2006-06-02 17:46 UTC Modified: 2006-06-02 18:07 UTC
From: jeb at webco dot tv Assigned:
Status: Not a bug Package: Math related
PHP Version: 5.1.4 OS: Linux / Ubuntu or Fedora
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:
43 + 38 = ?
Subscribe to this entry?

 
 [2006-06-02 17:46 UTC] jeb at webco dot tv
Description:
------------
Code 1 listed below does not work as expected. Code 2 does. Interesting bug. If I replace the "<= 0.01" with "< 0.02", it does work as expected.

Reproduce code:
---------------
Code 1:
$data['low'] = 0.04;
$data['high'] = 0.05;

if ($data['high'] - $data['low'] <= 0.01)
	print "it works";

Code 2:
$data['low'] = 0.02;
$data['high'] = 0.03;

if ($data['high'] - $data['low'] <= 0.01)
	print "it works";

Expected result:
----------------
Both instances should print "it works."

Actual result:
--------------
Code 1 prints nothing.
Code 2 prints "it works".

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-06-02 18:07 UTC] mike@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 16 13:01:30 2024 UTC