Skip to content

Instantly share code, notes, and snippets.

@jrivero
Created February 21, 2016 22:10
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 jrivero/1e0424baf84b2bcbc987 to your computer and use it in GitHub Desktop.
Save jrivero/1e0424baf84b2bcbc987 to your computer and use it in GitHub Desktop.
<?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