Skip to content

Instantly share code, notes, and snippets.

@ReinierC
Last active January 5, 2018 15:54
Show Gist options
  • Save ReinierC/8c3ef66c5f651278c8f3dbf3f5c77741 to your computer and use it in GitHub Desktop.
Save ReinierC/8c3ef66c5f651278c8f3dbf3f5c77741 to your computer and use it in GitHub Desktop.
Is it July?

RC Logo

Is it July?

Checks if it's July. Or not...

<?php
$currentMonth = date('F');
$currentMonthToo = date('m');
function summerHeat($currentMonth) {
if ($currentMonth == 'July'){
echo "it's July!";
}
else {
echo "Nope... it's not July";
}
}
function summerTime($currentMonthToo) {
if ($currentMonthToo == 7){
echo "it's July!";
}
else {
echo "Nope... it's not July";
}
}
?>
<?php summerHeat($currentMonth); ?>
<?php summerTime($currentMonthToo); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment