This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
@param String $time1 , Time representation | |
@param String $time2 , Time representation | |
@return boolean , wheter time range 1 and time range 2 overlaps or not | |
*/ | |
public function overlaps($from1,$to1,$from2,$to2) | |
{ | |
$start1 = strtotime($from1); | |
$end1 = strtotime($to1); |
NewerOlder