我必须验证一些值与过去六小时的比较,所以让它像:
$last_six_hours = (time() - (3600 *6));
如果我必须与16hs之类的整数进行比较,那么最好的方法是什么?
答案 0 :(得分:3)
strtotime()
获取相对金额并返回unix时间戳:
$four_o_clock = strtotime('16:00:00');
if ($sometimestamp > $four_o_clock) {
// it happened after 16:00:00 today
}