小数点后0位四舍五入
Round with 0 decimal point
我的变量是:$No = '9.80000000000'
我想要这样的结果:$No = '9.80'
我尝试使用带 2 个小数点的舍入函数,但得到的结果如下:$No = '9.8'
我想要一个特定的数字比例精度。
我的预期结果是:$No = '9.80'
.
round()
函数省略了最后一位零,因此最好使用 number_format() 函数。
例如:
round($No,2) //your code.
将此功能更改为如下所示
例如:
number_format($No, 2);
希望对你有所帮助
数字0小数点后无值。
你可以使用这个:
echo substr('9.80000000000', 0,4);
我的变量是:$No = '9.80000000000'
我想要这样的结果:$No = '9.80'
我尝试使用带 2 个小数点的舍入函数,但得到的结果如下:$No = '9.8'
我想要一个特定的数字比例精度。
我的预期结果是:$No = '9.80'
.
round()
函数省略了最后一位零,因此最好使用 number_format() 函数。
例如:
round($No,2) //your code.
将此功能更改为如下所示
例如:
number_format($No, 2);
希望对你有所帮助
数字0小数点后无值。 你可以使用这个:
echo substr('9.80000000000', 0,4);