我是php新手并尝试解决一个简单的if / else语句。我创建了两个不同的表来显示在网站上。我希望表1在星期日下午2:00到星期四晚上8:00之间显示。我希望表2显示其余的时间。我该如何做到这一点?
$current_time = strtotime('now');
if ($current_time > strtotime('sunday this week 2:00pm') && $current_time <
strtotime('thursday this week 8:00pm')){?>
echo table 1
<?php
}else{?>
echo table 2
<?php
}?>
答案 0 :(得分:0)
本周开始于周一。因此,如果是在星期四晚上8点之前,则不能在星期日下午2点之后。