我需要检查,如果当前时间是在TIMERANGE。 最简单的情况TIME_END> TIME_START:
if time(6,0) <= now.time() <= time(12,00): print '1'
但麻烦开始时,结束时间比开始时间更小,如“23:00 - 06:00”当用户进入一个时间范围。 像'00一时间:00' 将在此范围内。 大约5年前,我写了这个PHP函数:
function checkInterval($start, $end)
{
$dt = date("H:i:s");
$tstart = explode(":", $start);
$tend = explode(":", $end);
$tnow = explode(":", $dt);
if (!$tstart[2])
$tstart[2] = 0;
if (!$tend[2])
$tend[2] = 0;
$tstart = $tstart[0]*60*60 + $tstart[1]*60 + $tstart[2];
$tend = $tend[0]*60*60 + $tend[1]*60 + $tend[2];
$tnow = $tnow[0]*60*60 + $tnow[1]*60 + $tnow[2];
if ($tend < $tstart)
{
if ($tend - $tnow > 0 && $tnow > $tstart)
return true;
else if ($tnow - $tstart > 0 && $tnow > $tend)
return true;
else if ($tend > $tnow && $tend < $tstart && $tstart > $tnow)
return true;
else return false;
} else
{
if ($tstart < $tnow && $tend > $tnow)
return true;
else
return false;
}
现在我需要做同样的事情,但我想让它好看。 所以,我应该用什么算法来确定当前的时间'00:00'是在反向范围如['23:00', '01:00']
?