PHP 回合时间和小时数
我需要转几次。我想知道如何将时间舍入到下一小时并将其用作 PHP 中的 int 。
例如:
24:00:02 -> 25
33:15:05 -> 34
48:40:30 -> 49
有什么想法吗?
问候 克劳迪奥
I need to round some times. I would like to know how I can round a time to the next hour and use that as an int in PHP.
Ex:
24:00:02 -> 25
33:15:05 -> 34
48:40:30 -> 49
Any ideas?
Regards
Claudio
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要类似 DateTime::setTime 的内容。使用日期函数提取小时/分钟/秒,确定小时是否需要增加,然后将小时设置为适当的值,并将分钟和秒归零。
唔。再次阅读你的问题,如下所示:
You'd want something like DateTime::setTime. Use the date functions to extract the hours/minutes/seconds, figure out if the hour needs to be incremented, then set the hour to the appropriate value and zero out the minutes and seconds.
hmm. on reading your question again, something like this:
我假设您使用的格式是 HOURS:MINUTES:SECONDS,表示持续时间而不是一天中的某个时间,并且我假设您已将此值作为字符串获得。在这种情况下,您的解决方案是一个自制函数,因为这是一个非常具体的情况。像这样的东西:
尝试一下:http://codepad.org/nU9tLJGQ
I am assuming the format you're using is HOURS:MINUTES:SECONDS, expressing a duration of time rather than a time of day, and I'll assume that you've got this value as a string. In which case, your solution is a home-brew function, as this is a pretty specific case. Something like this:
Try it: http://codepad.org/nU9tLJGQ
如果您像处理数字一样处理时间字符串,PHP 会将其视为一个数字并删除除第一个数字之外的所有内容。
If you handle the time string like a number, PHP treats it like one and removes everyting but the first digits.