I wanted to run a php script every hour and needs to stop the script from night 8PM to morning 8AM.
Part of the code which I have created
$hour = date('G');
print $hour;
if ($hour >= 21 && $hour <=8)
{
die("Script is halted.\n");
}
cron job is set to run evey hour. But for some reason, it is running every hour not stopping from 8PM to 8AM.