Skip to content

Instantly share code, notes, and snippets.

@jdcauley
Created May 13, 2016 16:26
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 jdcauley/203d314df11daac94e3a6edb55ae2564 to your computer and use it in GitHub Desktop.
Save jdcauley/203d314df11daac94e3a6edb55ae2564 to your computer and use it in GitHub Desktop.
is_even
function is_even($number) {
$isEven = false;
if (is_numeric ($number)) {
if ( $number % 2 == 0) $isEven = true;
}
return $isEven;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment