如何在 PHP 中对第二位数字进行舍入?
我想向下舍入第二位数字。例如,数字是 12250,我想将其四舍五入到 12200。在 PHP 中,我知道有一些函数 Floor()、ceil() 可以实现此功能,但这只适用于浮点数。
有人可以帮忙吗?
I want to round down for second digit. For example, the number is 12250, I want to round down it to 12200. In PHP, I'm aware that there functions floor(), ceil() functions to make this work but that's working only for floating numbers.
Can anyone please help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除以 100 时也可以减去余数。
You can also subtract the remainder when dividing by 100.
您可以将该数字除以 100(将得到 122.50),然后使用
floor()
(将得到 122.00)并再次乘以 100(将得到 12200)这是一个演示:https://3v4l.org/Eiiqh
You can divide the number with 100 (will give you 122.50), then use
floor()
(will give you 122.00) and multiply it with 100 again (will give you 12200)Here's a demo: https://3v4l.org/Eiiqh