Last active
December 25, 2015 01:09
-
-
Save ts/6893029 to your computer and use it in GitHub Desktop.
Conditional based on hour of day (and day of week)
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
| date_default_timezone_set('America/Denver'); | |
| $H = (int) date('H'); | |
| $N = (int) date('N'); | |
| if ( $N < 6 && ($H >= 9 || $H < 1)) { | |
| echo "hey @ $H on $N"; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment