Skip to content

Instantly share code, notes, and snippets.

@egulhan
Created August 18, 2015 09:10
Show Gist options
  • Select an option

  • Save egulhan/aa72c932ac423e3f2ce9 to your computer and use it in GitHub Desktop.

Select an option

Save egulhan/aa72c932ac423e3f2ce9 to your computer and use it in GitHub Desktop.
Determine to check if it is weekend or not
<?php
function isWeekend($date) {
return (date('N', strtotime($date)) >= 6);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment