这里有一堆日期字段
我的问题是,我需要添加2小时$currentdateunix。
我必须监控我的页面上的一堆东西,我想给$monitorcheck额外的2个小时来同步,以防万一。
//Getting datetime field as UNIX time
$unitdate = strtotime($us[datetime]);
//Getting current date as UNIX
$currentdateunix = strtotime(date("F j, Y, g:i a"));
//Getting current date
$currentdate = date("F j, Y, g:i a");
//Calculation for Monitor Status
$monitorcheck = ($currentdateunix - $unitdate);
在当前日期和时间上添加两个小时:
$currentdateunix = strtotime('+2 hours');
在UNIX时间戳中添加7200 ?根据这个转换器,这应该可以实现。