Skip to content

Instantly share code, notes, and snippets.

@kapitanluffy
Last active December 13, 2018 10:35
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 kapitanluffy/4aebbf034ebca637f7055a98f60ad1e8 to your computer and use it in GitHub Desktop.
Save kapitanluffy/4aebbf034ebca637f7055a98f60ad1e8 to your computer and use it in GitHub Desktop.
isEven
<?php
function isEven($num) {
return ($num % 2 == 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment