I had two times in the format like 7:30:00 and 22:30:00 stored in the variables $resttimefrom
and $resttimeto
respectively.
I want to check whether the current time is between these two values. I am checking this with the code
$time = date("G:i:s");
if ($time > $resttimefrom and $time < $resttimeto ){
$stat = "open";
} else {
$stat = "close";
}
But I am always getting the $stat as Close. What may cause that?
See Question&Answers more detail:os