Skip to content

Instantly share code, notes, and snippets.

@robske110
Last active September 13, 2017 11:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robske110/77132cad0c164cbd583c5a028513ca82 to your computer and use it in GitHub Desktop.
Save robske110/77132cad0c164cbd583c5a028513ca82 to your computer and use it in GitHub Desktop.
Calculates if $year is a leapyear...
<?php
function isLeapYear(int $year): bool{
return (is_int($year / 4) || is_int($year / 400)) ? (!is_int($year / 100) || is_int($year / 400)) : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment