在php中,四舍五入取整函数是round()函数,该函数可以对浮点数进行四舍五入;语法格式为“round(number)”,参数number指定要舍入的值,不可省略。
本教程操作环境:windows7系统、PHP7.1版,DELL G3电脑
在php中,四舍五入取整函数是round()函数。
下面通过实例来看看:
<?php echo(round(0.60) . "<br>"); echo(round(0.50) . "<br>"); echo(round(0.49) . "<br>"); echo(round(-4.40) . "<br>"); echo(round(-4.60)); ?>
输出:
1 1 0 -4 -5
说明:
round() 函数对浮点数进行四舍五入。
基本语法:
round(number,precision,mode);
参数 | 描述 |
---|---|
number | 必需。规定要舍入的值。 |
precision | 可选。规定小数点后的尾数。默认是 0,也可以为负数。 |
mode | 可选。规定表示舍入模式的常量:
|
实例:
<?php echo(round(0.5) . "<br>"); echo(round(0.495,1) . "<br>"); echo(round(0.495,2,PHP_ROUND_HALF_DOWN) . "<br>"); echo(round(-4.405,2) . "<br>"); ?>
输出:
1 0.5 0.49 -4.41
推荐学习:《PHP视频教程》
以上是php中四舍五入取整函数是什么的详细内容。更多信息请关注PHP中文网其他相关文章!