php season calculation code example
Example: php season calculation
= 22)) {
$stagione = "Winter";
} elseif ($mese <= 6 && $giorno <= 20) {
$stagione = "Spring";
} elseif ($mese <= 9 && $giorno >= 22) {
$stagione = "Summer";
} else {
$stagione = "Autumn";
}