PHP round() 函数--四舍五入函数

jackxiang 2009-12-28 10:22 | |
Definition and Usage
定义和用法
The round() function rounds a number to the nearest integer.
round()函数的作用是:对浮点数进行四舍五入取整。

Syntax
语法
round(x,prec)




Parameter
参数 Description
描述
x Required. The number to be round
必要参数。指定需要进行操作的数值对象
prec Optional. The number of digits after the decimal point
可选参数。指定小数位数
实例,指定小数位数为2位:
<?php
echo(round(0.6025,3));
?>
[~]# php test.php
0.603

第二位小于5,情况:
<?php
echo(round(0.6024,3));
?>
[~]# php test.php
0.602


作者:jackxiang@向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除
地址:https://jackxiang.com/post/2392/
版权所有。转载时必须以链接形式注明作者和原始出处及本声明!


最后编辑: jackxiang 编辑于2009-12-28 10:25
评论列表
发表评论

昵称

网址

电邮

打开HTML 打开UBB 打开表情 隐藏 记住我 [登入] [注册]