我正在以HHMM格式(0000到2359)获取一家商店的开业和关门时间:
$openingtime = intval($open->time);
$closingtime = intval($close->time);
然后我以相同的格式获取当前时间:
$nowtime = intval(date("G") . date("i"));
我想知道当前时间是否在开放时间之前的15分钟到关闭时间之前的45分钟之间。
我有这个,但它不准确:
if(($nowtime >= ($openingtime - 15)) && ($nowtime <= ($closingtime - 45))){
// current time is between 15 minutes before opening and 45 minutes before closing
}
如果时间是2300,则2300-15 = 2285,这不是有效时间。
我该如何解决?
此外,我假设我需要在一天的重叠时间(0000)做一些事情,但是我不确定在那里需要做些什么。
答案 0 :(得分:2)
您可以这样创建/usr/local/bin/Rscript
对象:
DateTime
然后您可以使用$open = date_create_from_format('Hi', '1000');
$close = date_create_from_format('Hi', '1900');
DateTimeInterval
然后您可以从关闭时间和打开时间中将其替换:
$interval15 = new \DateInterval('P0Y0DT0H15M');
$interval45 = new \DateInterval('P0Y0DT0H45M');
答案 1 :(得分:1)
您应该将HHMM转换为分钟,然后将分钟与分钟进行比较
$time_open = str_pad($openingtime, 4, '0', STR_PAD_LEFT);
$time_close = str_pad($closingtime, 4, '0', STR_PAD_LEFT);
$open_minutes = substr($time_open,0,2) * 60 + substr($time_open,2,2);
$close_minutes = substr($time_close,0,2) * 60 + substr($time_close,2,2);
$nowtime = date("G") * 60 + date("i");
if($nowtime >= $open_minutes - 15 AND $nowtime <= $close_minutes - 45)
{
// do your stuff
}