Jump to content

Script to run after a certain time


jimmyk

Recommended Posts

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.