/***************
判斷是否在時間範圍內
***************/
//time()函式會回傳UNIX時間戳記
//strtotime()可將時間字串轉為UNIX時間戳記
$start = "2009-1-31";
$end = "2009-2-14";
$ustart = strtotime($start);
$uend = strtotime($end);
$now=time();
if($now > $ustart && $now < $uend)
{
echo '在時間範圍內';
}else{
echo '不在時間範圍內';
}
沒有留言:
張貼留言