вот мой код, где я ошибаюсь?Кстати, мое время 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";
}
?>