如何在PHP中比较两个时间
我有两次以7:30:00和22:30:00等格式分别存储在变量中。$resttimefrom
$resttimeto
我想检查当前时间是否在这两个值之间。我正在用代码检查这一点
$time = date("G:i:s");
if ($time > $resttimefrom and $time < $resttimeto ){
$stat = "open";
} else {
$stat = "close";
}
但我总是得到$stat接近。这是什么原因造成的?