This is my code to detect current time between $time1 and $time2
$time1 = "1700";
$time2 = "0400";
if(intval($time1) > intval($time2))
{
$open = strtotime("today " . $time1);
$close = strtotime("tomorrow " . $time2);
}
else
{
$open = strtotime("today " . $time1);
$close = strtotime("today " . $time2);
}
Ok what i am trying to do is to simulate something like car store opening time and closing time. basically, the car store opening and closing time is dynamic. let say the car store opens at 1400 and close at 0400 in the morning. so a customer visit the website at 0100, he should be able to see the car store is opened and not close. With my code, when customer visit at 0100, the car store is closed because the timer automatically makes it today the 1400 time. Is there any solution for the problem?
I am still learning and hopefully can guide me with my problems. Thanks
DateTimeobjects? – Madara Uchiha Aug 20 '12 at 16:48