实例
对浮点数进行四舍五入:
echo(round(0.60) . "<br>");
echo(round(0.50) . "<br>");
echo(round(0.49) . "<br>");
echo(round(-4.40) . "<br>");
echo(round(-4.60));
定义和用法
round() 函数对浮点数进行四舍五入。
提示:如需向上舍入为最接近的整数,请查看 ceil() 函数。
提示:如需向下舍入为最接近的整数,请查看 floor() 函数。
语法
round(number,precision,mode);
参数 | 描述 |
---|---|
number | 必需。规定要舍入的值。 |
precision | 可选。规定小数点后的尾数。默认是 0,也可以为负数。 |
mode | 可选。规定表示舍入模式的常量:
|
技术细节
返回值: | 舍入后的值。 |
---|---|
返回类型: | Float |
PHP 版本: | 4+ |
PHP 更新日志: | PHP 5.3:新增 mode 参数。 |
猜你喜欢:
暂无回复。