Created
February 21, 2016 22:10
-
-
Save jrivero/1e0424baf84b2bcbc987 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
$hour = date("G"); | |
if ($hour < 12) { | |
echo "good morning world"; | |
} elseif ($hour < 18) { | |
echo "good afternoon world"; | |
} else { | |
echo "good evening world"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment