PHP 四舍五入小数
是否可以使用 PHP 将小数四舍五入到最接近的 0.5,如下所示:
number | round
----------------
1.29 | 1.50
2.03 | 2.00
1.43 | 1.50
1.13 | 1.00
11.38 | 11.50
我尝试过:
$rnd= round($number,2);
但我得到的小数类似于上面“数字”列中的小数。
Is it possible to round a decimals to the nearest .5 with PHP like this:
number | round
----------------
1.29 | 1.50
2.03 | 2.00
1.43 | 1.50
1.13 | 1.00
11.38 | 11.50
I tried with:
$rnd= round($number,2);
but I get decimals like the one in the column "number" above.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不想为这个 php round 函数编写任何函数已有选项,模式中是 round 函数的第三个参数。更多参考PHP Round Function
You don't want write any function for this php round function already have the option, in mode is a third argument of round function. for more reference PHP Round Function