how to check if there is a time overlap code example
Example: how to check time overlap
public function check_time_overlap($start_time1, $end_time1, $start_time2, $end_time2) {
return (($start_time1) <= ($end_time2) && ($start_time2) < ($end_time1) ? true : false);
}
// true: overlap
// falseL not overlap