php中四舍五入取整函数是什么
时间:2021-07-05 15:01
在php中,四舍五入取整函数是round()函数,该函数可以对浮点数进行四舍五入;语法格式为“round(number)”,参数number指定要舍入的值,不可省略。 本教程操作环境:windows7系统、PHP7.1版,DELL G3电脑 在php中,四舍五入取整函数是round()函数。 下面通过实例来看看: 输出: 说明: round() 函数对浮点数进行四舍五入。 基本语法: 实例: 输出: 推荐学习:《PHP视频教程》 以上就是php中四舍五入取整函数是什么的详细内容,更多请关注www.gxlsystem.com其它相关文章!<?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(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