Skip to content

Instantly share code, notes, and snippets.

@hashimwarren
Created July 5, 2018 04:11
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 hashimwarren/4638dcbdde3c4349b69b3becd70be0e5 to your computer and use it in GitHub Desktop.
Save hashimwarren/4638dcbdde3c4349b69b3becd70be0e5 to your computer and use it in GitHub Desktop.
Function for creating a holiday greeting
<?php
date_default_timezone_set("America/New_York");
function seasonsGreetings($dateCheck, $greeting) {
$dateNumber = date("md");
if($dateNumber = $dateCheck) {
echo $greeting;
} else {
echo "Good day!";
}
}
seasonsGreetings("0704", "Happy 4th of July");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment