PHP - 调整 time() 使其可被 5 整除
我使用 PHP 的 time() 设置两个日期(两个输入字段的默认值):
- 开始日期,应该是当前时间:
date('m/d/YH:i', time() );
- 结束日期,应为当前时间 + 2 小时:
date('m/d/YH:i', time() + 60*60*2);
如何调整两个日期,使分钟除以 5?
例如,如果当前时间是12/12/2012 14:16,我想将其调整为14:20。 或者如果当前时间是12/12/2012 04:59,我想将其调整为05:00。
I'm using PHP's time() to set two dates (default values for two input fields):
- a start date, which should be the current time:
date('m/d/Y H:i', time());
- a end date, which should be the current time + 2 hours:
date('m/d/Y H:i', time() + 60*60*2);
How can I adjust both dates, so the minutes divide with 5?
For example, if the current time is 12/12/2012 14:16, I want to adjust it to 14:20.
Or if the current time is 12/12/2012 04:59, I want to adjust it to 05:00.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可能还有其他内置函数可以解决您的问题,但这是我对您问题的解决方案,
我希望这会有所帮助:)
Prabeen
There might be other inbuilt function to achieve you problem , but here is the my solution to your problem
I hope this helps :)
Prabeen