我在根据两个预先指定的时间比较当前时间时遇到问题。让我告诉我想要什么:如果当前时间在晚上 10 点到早上 8 点之间,我想显示一条消息。我的代码是
$current_time = strtotime('now');
if ( $current_time > strtotime('10:00pm') && $current_time < strtotime('8:00am') ) {
//Display message
}
但它不起作用,因为在上午 12:00 之后, strtotime('10:00pm') 正在计算今天晚上 10 点的值,并且无法在给定条件下传递。所以我需要你的建议。