我试图让页面的一部分仅在星期五下午 5 点之后出现,并在每周一星期一上午 9 点关闭。如果我知道日期,我知道该怎么做,但不知道怎么做。
目前我不得不每周手动更新我的变量。
$startDate = strtotime("08/02/2013 05:00PM");
$endDate = strtotime("08/05/2013 09:00AM");
if (time() > $startDate && time() < $endDate)
{
// contents to display
}