I have this php
<?php echo round($price, 2); ?>
and the $price maybe 1.0000
i want 1.00 but i get only 1
any ideas
|
The following
The documentation for this syntax is best described on the |
|||||||||||||
|
|
This works:
|
|||
|
|
number_format is your best bet.
Example:
|
|||||||||||
|
sprintf("%.3f", 3.1415) ==> "3.142"– nickf Sep 21 '11 at 0:35