Last active
December 20, 2017 17:07
-
-
Save marcbacon/cbd8550374e39ba962036a48e2c0231d to your computer and use it in GitHub Desktop.
[PHP Check Even Numbers] #php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$number = 20; | |
if ($number % 2 == 0) { | |
print "It's even"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment