使用 PHP 的日期功能确定日期提交顺序和偏移量
如果我有一系列采用以下格式的日期 (YYYY-mm-dd
) ,我如何使用 PHP 的日期功能确定每个日期至少比前一个日期晚 24 小时,并且日期为顺序的。
例如:
- 2010-11-01
- 2010-11-01
- 2010-11-02
会失败,因为 2 不是 1 之后的 24 小时。
或者例如:
- 2010-10-15
- 2010-11-01
- 2010-11-02
会失败,因为 1 早于 2。
If I have a series of dates in the following format (YYYY-mm-dd
) , how can I determine using PHP's date functionality that each date is at least 24 hours after the previous one and the dates are sequential.
For instance:
- 2010-11-01
- 2010-11-01
- 2010-11-02
Would fail because 2 isn't 24 hours after 1.
Or for example:
- 2010-10-15
- 2010-11-01
- 2010-11-02
Would fail because 1 is earlier than 2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看它。
See it.