Created
August 18, 2015 09:10
-
-
Save egulhan/aa72c932ac423e3f2ce9 to your computer and use it in GitHub Desktop.
Determine to check if it is weekend or not
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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