我有两个日期,格式如“ Ymd H:i:s”。我需要比较这两个日期并找出时差。
您可以将它们转换为时间戳,然后从那里开始:
$hourdiff = round((strtotime($time1) - strtotime($time2))/3600, 1);
除以3600是因为一小时内有3600秒,请round()避免使用很多小数位。
round()