Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Time Between Two Other Times?

Tags:

php

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?

like image 620
mellowsoon Avatar asked Mar 24 '11 00:03

mellowsoon


1 Answers

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
}
like image 162
Savageman Avatar answered Sep 30 '22 06:09

Savageman