これが私のコードです、どこで間違いを犯しますか?ところで、私のタイムゾーンは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";
}
?>