Calculating leap year

if ((( $year % 4 == 0) && ( $year % 100 != 0)) || $year % 400 == 0 )
echo "Leap Year";
else
echo "Not a leap year";