我在这里找到了这个片段。
$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
}
这工作得很好,但我想限制它的日期也为我正在工作的网站我希望它检查时间戳如果交付 = 明天然后他们必须在前一天下午 5 点之前取消订单。