php – 两次之间是时间吗?

前端之家收集整理的这篇文章主要介绍了php – 两次之间是时间吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要做的(例如)是在星期三,晚上8点到凌晨2点之间更改我的网站徽标.技术上凌晨2点是周四早上.那么我如何检查当前时间是否在周三晚上8点到凌晨2点之间?
好吧,更容易:
$current_time = strtotime('now');
if ($current_time > strtotime('wednesday this week 8:00pm') && $current_time < strtotime('thursday this week 2:00am')) {
    // Special logo
}
原文链接:https://www.f2er.com/php/139009.html

猜你在找的PHP相关文章