$start = "1982-11-20";$end   = "1999-12-10;$ustart = strtotime($start);
$uend   = strtotime($end);$now = time();
if ($now > $ustart && $now < $uend)
    echo "当前时间是在指定时间范围内.";