我是 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
}?>