四舍五入到小数点后第二位
我的是什么问题是:
当我使用时
ceil(3.6451895227869);
,我会喜欢
4
但我想要
3.65
你能帮我吗?
UPDATE
请记住: 这应该始终舍入到上限,就像舍入
3.6333333333333
时一样,它不能是 3.63 而应该是 3.64
Possible Duplicate:
PHP Round function - round up to 2 dp?
What my problem is:
When i use
ceil(3.6451895227869);
i get like
4
but i want
3.65
Can you help me out?
UPDATE
Please remember:
This should always round to ceil like while rounding
3.6333333333333
it must not be 3.63 but should be 3.64
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 http://www.php.net/manual/en/function.round .php
编辑
尝试使用此自定义函数 http://www.php.net/manual/ en/function.round.php#102641
Check out http://www.php.net/manual/en/function.round.php
EDIT
Try using this custom function http://www.php.net/manual/en/function.round.php#102641
你想要 round
第二个参数是精度,该标志告诉
round
始终向上舍入(如ceil
)You want round
The second argument is the precision, the flag tells
round
to always round up (likeceil
)