php unix time"今天下午2点之前"

时间:2013-11-14 16:45:05

标签: php date unix-timestamp strtotime epoch

使用PHP,我想检查时间是否“今天下午2点”

strtotime会允许这样的东西,还是其他时间/日期函数的组合会让我得到这样的结果

怎么做?

我在想像

这样的东西

if(savedTime < strtotime("before 2pm today"))

但似乎声明不是那么好,最终我需要两个变量都在unix / epoch时间并且比较本身会很简单,但我不知道如何获得当天下午2点

1 个答案:

答案 0 :(得分:3)

你快到了:

if($savedTime < strtotime("2pm"))