最近我不得不处理很多日期冲突问题,我能想到的最好的方法是:
date1.start < date2.end 和 date1.end > date2.start = 碰撞
这个简单的公式将解释以下所有情况:
——所有情况都一样:
date1.start = 2009 年 1 月 1 日
date1.end = 2009 年 1 月 10 日
--开始日期在第一个日期范围内:
date2.start = 2009 年 1 月 9 日
date2.end = 2/10/2009
--结束日期在第一个日期范围内:
date2.start = 2008 年 12 月 10 日
date2.end = 2009 年 1 月 3 日
--开始和结束日期在第一个日期范围内:
date2.start = 2009 年 1 月 2 日
date2.end = 2009 年 1 月 3 日
--第一个日期在第二个日期范围内:
date2.start = 12/1/2008
date2.end = 2/1/2009
$date1 = array('start' => '2009-01-05', 'end' => '2009-01-10');
$date2 = array('start' => '2009-01-01', 'end' => '2009-01-04'); // end inside one
$date3 = array('start' => '2009-01-04', 'end' => '2009-01-15'); // start inside one
$date4 = array('start' => '2009-01-01', 'end' => '2009-01-15'); // one inside me
$date5 = array('start' => '2009-01-04', 'end' => '2009-01-05'); // inside one
function datesCollide($date1, $date2)
{
$start1TS = strtotime($date1['start']);
$end1TS = strtotime($date1['end']);
$start2TS = strtotime($date2['start']);
$end2TS = strtotime($date2['end']);
if ($start1TS <= $end2TS && $end1TS >= $start2)
{
return true;
}
return false;
}
根据您的评论,这可能是您正在寻找的解决方案:请注意,此解决方案不是很优化,只能用于找出更好的解决方案。 永远不要相信来自网络的代码。
$events = array(
array(
"id" => 21,
"start" => 1242219600,
"end" => 1242237600,
"title" => "foo",
"split" => false
),
array(
"id" => 22,
"start" => 1242223200,
"end" => 1242234000,
"title" => "foo",
"split" => false
)
);
foreach ($events as $key => $event)
{
$events[$key]->split = dateCollisionCheck($event, $events);
}
function dateCollisionCheck(&$event, &$eventList)
{
foreach ($eventList as $checkEvent)
{
if ($event->id != $checkEvent->id)
{
if ($event->start <= $checkEvent->end && $event->end >= $checkEvent->start)
{
return true; // return as soon as we know there is a collision
}
}
}
return false;
}
*代码未经测试