php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #23608 Error in round() numbers
Submitted: 2003-05-13 09:24 UTC Modified: 2003-05-13 09:30 UTC
From: lorang at e-connect dot lu Assigned:
Status: Not a bug Package: Math related
PHP Version: 4.3.1 OS: Linux RedHat 8.0
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: lorang at e-connect dot lu
New email:
PHP Version: OS:

 

 [2003-05-13 09:24 UTC] lorang at e-connect dot lu
Starnge bug :

$tva=1.005+0.005-0.005;
echo number_format($tva,2);

outputs 1.00 instead of 1.01

but :

$tva=1.005+(0.005-0.005);
echo number_format($tva,2);

outputs 1.01 what is correct but this should not be influenced by the brackets.

and :

$tva=1.05+0.05-0.05;
echo number_format($tva,1);

outputs 1.1 what is correct

Thankx for reply
Regards,
Lorang Jacques

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-05-13 09:30 UTC] derick@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

See the manual on floats
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 05:01:30 2024 UTC