Skip to content

Instantly share code, notes, and snippets.

View guiman's full-sized avatar

Alvaro Fernando Lara guiman

View GitHub Profile
@guiman
guiman / time_range_overlap_validation.php
Created May 29, 2012 00:01
Time Range Overlap verification
<?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);