Skip to content

Instantly share code, notes, and snippets.

@jarnheimer
Created April 27, 2020 16:25
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 jarnheimer/8ec33bf5874b0eb793848137e6502ac7 to your computer and use it in GitHub Desktop.
Save jarnheimer/8ec33bf5874b0eb793848137e6502ac7 to your computer and use it in GitHub Desktop.
<?php
function isWeekend($day){
if ($day == 'Saturday' || $day == 'Sunday') {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment