使用PHP,我想检查时间是否“今天下午2点”
strtotime会允许这样的东西,还是其他时间/日期函数的组合会让我得到这样的结果
怎么做?
我在想像
这样的东西 if(savedTime < strtotime("before 2pm today"))
但似乎声明不是那么好,最终我需要两个变量都在unix / epoch时间并且比较本身会很简单,但我不知道如何获得当天下午2点
答案 0 :(得分:3)
你快到了:
if($savedTime < strtotime("2pm"))