Description
float
round ( float val [, int precision])
Returns the rounded value of val to
specified precision
(number of digits after the decimal point).
precision can also be negative or zero (default).
Example 1. round() examples |
<?php
echo round(3.4); echo round(3.5); echo round(3.6); echo round(3.6, 0); echo round(1.95583, 2); echo round(1241757, -3); echo round(5.045, 2); echo round(5.055, 2); ?>
|
|
Note:
The precision parameter is only
available in PHP 4.
See also:
ceil(),
floor(), and
number_format().