What I want to do (for example) is change my site's logo on Wednesdays, between 8:00pm, and 2:00am. Technically 2:00am is Thursday morning. So how would I check if the current time is between 8:00pm and 2:00am on Wednesday?
Well, even easier :
$current_time = strtotime('now');
if ($current_time > strtotime('wednesday this week 8:00pm') && $current_time < strtotime('thursday this week 2:00am')) {
// Special logo
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With