检查时间戳是否是今天
我有以下格式的时间戳(由于 PHP 的优点,可以轻松更改!)。
2011-02-12 14:44:00
检查此时间戳是否是今天使用的最快/最简单的方法是什么?
I've got a timestamp in the following format (Which can easily be changed thanks to the beauties of PHP!).
2011-02-12 14:44:00
What is the quickest/simplest way to check if this timestamp was taken today?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
我认为:
I think:
这就是我用于此类任务的方法:
比较日期:$format='Ymd'。
比较月份:$format='Ym'。
等等......
在你的情况下:
This is what i use for this kind of task :
compare day : $format='Y-m-d'.
compare month : $format='Y-m'.
etc...
in your case :
我更喜欢比较时间戳(而不是日期字符串),所以我今天用它来检查。
小提琴:http://ideone.com/55JBku
I prefer to compare timestamps (rather then date strings), so I use this to check today.
Fiddle: http://ideone.com/55JBku
你是这个意思吗?
are you mean this ?