检查时间戳之间是否存在日期
我试图弄清楚两个 UNIX 时间戳之间是否存在日期,无论年份如何。例如,假设我有日期 12 月 12 日,但不包含年份。我如何检查时间戳 1353369600 和 1358640000 之间是否存在 12 月 12 日(第一个时间戳等于 2012 年 11 月 20 日;第二个时间戳等于 2013 年 1 月 20 日)。我正在用 PHP 编写应用程序,但是如果您知道如何用其他语言执行此操作,请发表您的想法,以便我可以尝试完成逻辑。
提前致谢
更新:这就是答案! 使用 strtotime 并将第二个参数设置为开始时间戳:)
I am trying to figure out if a date exists between two unix timestamps regardless of year. For example, lets say I have the date December 12th, but does not contain the year. How would I check if December 12th exists between the timestamps of 1353369600 and 1358640000 (first timestamp equals Nov. 20th, 2012; second equals Jan. 20, 2013). I am programming the application in PHP, however if you know how to do this in a different language, please post your thoughts so I can try to work through the logic.
Thanks in advance
Update: here is the answer!
Use strtotime and set the second parameter to the beginning timestamp :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用
strtotime
将字符串转换为时间戳,然后进行比较即可。如果字符串不包含年份,则年份默认为当前年份。Just use
strtotime
to turn the string to timestamp and then compare. If the string don't contain year, then the year default is current year.您可以每年检查时间戳之间的情况,看看它们之间是否有所需的日期。
You can check every year between the timestamps and see if there is the desired day in between them.