I found this snippet here.
$resttimefrom = 50000; // 5am
$resttimeto = 170000; // 5pm
$currentTime = (int) date('Gis'); // time now
if ($currentTime > $resttimefrom && $currentTime < $resttimeto)
{
// its before 5pm lets do something
}
else
{
// after 5pm sorry
}
This worked perfectly fine but I would like to limit it by date also for the site I am working on I want it to check a timestamp if delivery = tomorrow then they must cancel the order before 5pm the day before.
1 Answer