php round() 函数

round():对付一个带有小数的数字进行四舍五入。

语法:

php四舍五入保留两位小数php 中四舍五入的办法 SQL

round(x,prec)

参数:

x:(可选)可四舍五入处理的数字

prec:(可选)规定要保留的小数的位数,它可以是负数或零(默认)

PHP 四舍五入的方法

1、利用 round() 函数进行四舍五入

php代码

echo(round(0.66));echo '<br/>';echo(round(0.44));echo '<br/>';echo(round(0.49));echo '<br/>';echo(round(-4.62));echo '<br/>';echo(round(-4.30));

运行结果:

100-5-4

2、自定义要保留小数的位数

php代码:

echo(round(0.662435,2));echo '<br/>';echo(round(0.442341,5));echo '<br/>';echo(round(0.49,1));echo '<br/>';echo(round(-4.62456566,6));echo '<br/>';echo(round(-4.306659,3));

运行结果:

0.660.442340.5-4.624566-4.307