Posted by lorento on 05/29/06 06:06
>From the php manual :
The returned float has a precision based on the precision directive in
php.ini, which defaults to 14.
Checkout your php.ini configuration :
; The number of significant digits displayed in floating point numbers.
precision = 14
To configure on the fly use this function :
<?php
ini_set('precision', '14');
?>
Regards,
Lorento
--
http://www.mastervb.net
http://www.immersivelounge.com
[Back to original message]
|