Today i think i found an bu in the PHP5 version 5.0.3 ( allready exits also in 
the version 5.0.2 , i try this version also ). 

When tryo one of this scripts:

$i_test = "0.085007667542";
$tm_total = sprintf('%.2f', $i_test);
echo $tm_total;

$i_test = 0.085007667542;
$tm_total = sprintf('%.2f', $i_test);
echo $tm_total;

$i_test = "0.085007667542";
$tm_total = sprintf('%.2f', floatval($i_test));
echo $tm_total;


i always get an other result. Some time it get a result like that:

"-26815615859885220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.00"

my friend try it also and have the same problems...

is that a bug in php5?

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

Reply via email to