Re: PHP5 sprintf() function borken

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I ran your code through 3000 iterations and it always results in 0.09. This is on Suse 9.2, Apache 2.0.52 and php 5.0.3

> 
> From: Thomas Munz <thomas@xxxxxxxxxxxxx>
> Date: 2005/01/11 Tue AM 11:10:37 EST
> To: php-general@xxxxxxxxxxxxx
> Subject:  PHP5 sprintf() function borken
> 
> 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
> 
> 

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux