我试图仅在一段时间或几天内显示一些内容我在数据库中有开始时间、开始日期、结束时间和结束日期,这样当从数据库中获取数据时,应该检查这个时间和日期并相应地显示内容
我尝试过的代码
$startDateTime = strtotime($result['StartDate']." ".$result['StartTime']);
$endDateTime = strtotime($result['EndDate']." ".$result['EndTime']);
$now = time();
echo "START : ".$startDateTime;
echo "<br/>END : ".$endDateTime;
echo "<br/>CURRENT : ".$now;
if($now >= $startDateTime && $now <= $endDateTime){
echo $result['content'];
}
但它每次都无法显示内容
请帮我
提前致谢