0

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


   }?>
4

1 回答 1

0

本周从星期一开始。因此,如果是在星期四晚上 8 点之前,则不能在星期日下午 2 点之后。

于 2013-10-26T22:51:58.063 回答