Skip to content

Instantly share code, notes, and snippets.

@purplexa
Last active August 29, 2015 13:55
Show Gist options
  • Save purplexa/8720807 to your computer and use it in GitHub Desktop.
Save purplexa/8720807 to your computer and use it in GitHub Desktop.
<?php
if ($hour < 9) {
$time = 0;
}
else if ($hour > 21) {
$time = 5;
}
else {
$time = floor(($hour - 6) / 3)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment