Skip to content

Instantly share code, notes, and snippets.

@JBlond
Created July 22, 2020 11:31
Show Gist options
  • Save JBlond/5be97125fed33fbc7e38678d914da09b to your computer and use it in GitHub Desktop.
Save JBlond/5be97125fed33fbc7e38678d914da09b to your computer and use it in GitHub Desktop.
leap year
<?php
function isLeapYear(int $year): bool
{
return $year % 4 == 0 && $year % 100 != 0 || $year % 400 == 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment