<?php $year = 2022; if($year % 4 == 0) { echo $year." is a leap year"; } else { echo $year." is a not leap year"; } ?>