php:将分钟四舍五入到最近的一刻钟,然后执行更多操作
最初的问题是这样的: 取分钟数->变成一刻钟-> 1 刻钟为 1 个单位 ->输出单位
今天我一整天都在拼凑一个页面,几分钟前我的大脑就停止了工作,我就是不知道如何输出单位数量。我知道在此网站上发布问题会有帮助。
因此,用户输入分钟数(不是小时和分钟,只是分钟),站点需要输出单位数。一个单位是一刻钟。分钟始终四舍五入到最接近的一刻钟。我知道我会以某种方式使用 ceil ,可能还会使用(?) number_format ,但我就是无法让它正确显示。任何帮助表示赞赏。
The initial problem is this:
Take the amount of minutes -> turn into quarter hours -> 1 quarter hour is 1 unit -> output units
I've been putting a page together all day today and my brain just stopped working a couple of minutes ago and I just can't wrap my head around how to output the amount of units. I knew posting the problem on this site would help.
So the user puts in the amount of minutes (not hours and minutes, just minutes) and the site needs to output the amount of units. A unit is a quarter hour. The minutes are always rounded up to the nearest quarter hour. I know I'll use ceil in some sort of way and probably(?) number_format, but I just can't get it to come out correctly. Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试:
Try:
我对此的看法:
return (round($mins / 15) * 15) % 60;
产生:
My take on this:
return (round($minutes / 15) * 15) % 60;
Produces:
对于 15 分钟的时间范围,这将为您提供 0->3。如果您想要 1-4,请改用 ceil() 。
This'll give you 0->3 for the range of 15 minute periods. If you want 1-4, then use
ceil()
instead.这还不行吗?
Does this not do the trick?