Skip to content

Instantly share code, notes, and snippets.

@ts
Last active December 25, 2015 01:09
Show Gist options
  • Save ts/6893029 to your computer and use it in GitHub Desktop.
Save ts/6893029 to your computer and use it in GitHub Desktop.
Conditional based on hour of day (and day of week)
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