ID:               35896
 User updated by:  matt at equaliser dot net
 Reported By:      matt at equaliser dot net
 Status:           Open
 Bug Type:         *Math Functions
 Operating System: Linux
 PHP Version:      4.4.1
 New Comment:

Soory - I got the expected result and the actual result interposed in
my previous posting.


Previous Comments:
------------------------------------------------------------------------

[2006-01-04 20:30:50] matt at equaliser dot net

Description:
------------
I know *why* this is happening - so please don't point me to
http://www.php.net/manual/en/language.types.float.php - I'm aware of
this.

This does not change the fact that a pure call to the round() function
using a float value stored in memory can return the wrong result.

The fact that this is easily fixed by rounding to one decimal place
further along the float before performing the actual rounding, simply
makes the continued existence of this bug more baffling. Why doesn't
PHP round() do this internally?

Do all PHP developers need to roll their own round() function if they
are going to guarantee mathematical accuracy?


Reproduce code:
---------------
<?php

$input_value = 45;
$vat = $input_value * .175;
echo $vat . '<br />';
echo round($vat , 2) . '<br />';
echo round(strval($vat) , 2) . '<br />';
echo round(round($vat , 3) , 2) . '<br />';

$input_value2 = 7.875;
echo round($input_value2 , 2) . '<br />';

echo round(7.875 , 2) . '<br />';

echo  $vat - $input_value2;

?>


Expected result:
----------------
7.875
7.87
7.88
7.88
7.88
7.88
-8.8817841970013E-16

Actual result:
--------------
7.875
7.88
7.88
7.88
7.88
7.88
-8.8817841970013E-16


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=35896&edit=1

Reply via email to