这是我的代码,我犯了错误?我的时间ZONE是UTC + 2:00。 提前感谢您的回答。
<?php
$current_time = date('H');
if ($current_time >18) {
echo "Good night";
}
if ($current_time <12) {
echo "Good morning";
}
if (($current_time >=12) && ($current_time <17)) {
echo "Good day";
}
?>
答案 0 :(得分:1)
$current_time = date('H');
if ($current_time >18) {
echo "Good night";
} else if ($current_time <12) {
echo "Good morning";
} else {
echo "Good day";
}
答案 1 :(得分:0)
您的上一次测试应检查$current_time <=17
。注意小于或等于......
if (($current_time >=12) && ($current_time <=17))
@ErnestasStankevičius尽管有nice clean solution。
答案 2 :(得分:0)
尝试var_dump($current_time);
。这样,你就会明白它包含的内容以及你犯错的地方。
答案 3 :(得分:0)
正如预测的那样,问题出在时区。
<?php
date_default_timezone_set('Europe/Sofia');
$current_time =date('H');
echo "$current_time";
if ($current_time >'18') {
echo "Good night";
}
if ($current_time <'12') {
echo "Good morning";
}
if (($current_time >='12') && ($current_time <='17')) {
echo "Good day";
}
?>