- Output for 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.34, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.17, 8.1.0 - 8.1.4
- open
<?php
$otime="16:15";
$ctime="00:50";
$open = strtotime(date("Y-m-d ").$otime);
$close = strtotime(date("Y-m-d ").$ctime);
If($close<$open) $close += 3600*24;
If(time() >= $open && time() < $close){
Echo "open";
}Else{
Echo "closed";
}