我想要做的(例如)是在星期三,晚上8点到凌晨2点之间更改我的网站徽标.技术上凌晨2点是周四早上.那么我如何检查当前时间是否在周三晚上8点到凌晨2点之间?
好吧,更容易:
原文链接:https://www.f2er.com/php/139009.html$current_time = strtotime('now'); if ($current_time > strtotime('wednesday this week 8:00pm') && $current_time < strtotime('thursday this week 2:00am')) { // Special logo }