Ross McKay schreef:
Arnie Shore wrote:
Folks, I need to take a given float value to, say, two decimals, as per
subject JS. I've RTFM, but to no avail.
On Mon, 08 Sep 2008 22:03:54 +0200, Sjoerd wrote:
$str = sprintf("%01.2f", $number);
Skinning cat, method two:
$str = number_format($number, 2);
watch out with number_format() it will format according to the current locale
unless you specify the decimal and thousands seperator char explicitly ... e.g.
english: 1,000.00
dutch: 1.000,00
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php