yarub Posted May 8, 2006 Share Posted May 8, 2006 I'm making little scripts that calculate whatever numbers. Some results come out nicely like 5.5 or 10.29. However, some come out like 3.6666666667. Is it possible to force it to be a certain number? Like if I want them all to have two decimal places, could I do that? Or maybe even no decimal places at all?Example of what I'm doing:$a = $b * $c;Then $a equals like 504.666666667. I want 504.67 if possible. Link to comment https://forums.phpfreaks.com/topic/9286-php-results-decimals/ Share on other sites More sharing options...
trq Posted May 8, 2006 Share Posted May 8, 2006 [code]$a = $b * $c;sprintf("%02.2f", $a);[/code] Link to comment https://forums.phpfreaks.com/topic/9286-php-results-decimals/#findComment-34223 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.