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
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
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

Add a Patch

Pull Requests

Add a Pull Request

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: Thu Mar 28 14:01:29 2024 UTC