check if a year is a leap year php code example
Example: How to check leap year in php?
$year = 2014;
// Leap years are divisible by 400 or by 4 but not 100
if(($year % 400 == 0) || (($year % 100 == 0) && ($year % 4 == 0))){
echo "$year is a leap year.";
} else{
echo "$year is normal year.";
}