php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #74347 -1 - 0.1 + 1 + 0.1 bugg
Submitted: 2017-03-31 09:17 UTC Modified: 2017-03-31 09:18 UTC
From: stefan at van-echtelt dot nl Assigned:
Status: Not a bug Package: Output Control
PHP Version: Irrelevant OS: Windows
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: stefan at van-echtelt dot nl
New email:
PHP Version: OS:

 

 [2017-03-31 09:17 UTC] stefan at van-echtelt dot nl
Description:
------------
$test = -1 - 0.1 + 1 + 0.1;
print $test;

if you print this in php the value will be -8.3266726846887E-17.
It should be 0.

Test script:
---------------
$test = -1 - 0.1 + 1 + 0.1;
print $test;


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2017-03-31 09:18 UTC] requinix@php.net
-Status: Open +Status: Not a bug
 [2017-03-31 09:18 UTC] requinix@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://www.floating-point-gui.de/

Thank you for your interest in PHP.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Dec 26 10:01:29 2024 UTC