jimmyk Posted January 11, 2008 Share Posted January 11, 2008 Can this script be modified to return true beginning on Saturday at 4am eastern time until anytime on Wednesday. Would eastern time be "$estime"? Thanks. CODE <?php //place this somewhere in your web page before the "On the air" section below function onAir() { //PHP's time() function adds the time zone, so adjust for that $gmtime=time() - date('Z'); //if today is Sunday, return false if(date('w',$gmtime)==0) { return FALSE; } $hour=date('H',$gmtime); if($hour> 2 AND $hour< 7) { return TRUE; } return FALSE; } ?> Now, you just use the function above to decide whether to display "On Air" or "Off the Air." <?php if (onAir()) { ?> <h2>ON THE AIR</h2> <?php } else { ?> <h2>OFF THE AIR</h2> <?php } ?> /CODE Quote Link to comment https://forums.phpfreaks.com/topic/85599-script-to-run-after-a-certain-time/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.