Hello,

Can anybody shed any light on this behaviour please?

PHP Version 5.2.5 on XP


$a = 1754.00 ;
$b = 1754.03 ;
$diff = abs($b) - abs($a);

echo "$diff<br/>";     //output: 0.03

$a = 1754.00 ;
$b = 1754.09 ;
$diff = abs($b) - abs($a);

echo "$diff<br/>";     //output :0.0899999999999

$a = 1754.01 ;
$b = 1754.02 ;
$diff = abs($b) - abs($a);

echo $diff;     //output: 0.00999999999999


Is this expected behaviour? Can anybody reproduce this?

Many thanks,


Andy

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to