将PHP时间显示为大于24小时的小时数,例如70小时

时间:2015-05-06 10:22:05

标签: php mysql time

我有以下代码显示时间

$now = date_create(date("Y-m-d H:i:s"));

$replydue = date_create($listing['replydue_time']);

$timetoreply = date_diff($replydue, $now);

echo $timetoreply->format('%H:%I')

我的问题是,如果差异超过24小时,它会在24小时内打破时间并显示1或2小时或任何小时但小于24小时。

我怎样才能显示74小时的实际小时差异!

谢谢,

4 个答案:

答案 0 :(得分:2)

理想情况下,我更喜欢以下方法..而不是重新发明轮子或进行大量手动转换:

$now = new DateTime();
$replydue = new DateTime($listing['replydue_time']);

$timetoreply_hours = $timetoreply->days * 24 + $timetoreply->h;
echo $timetoreply_hours.':'.$timetoreply->format('%I');

来自manual

  

天:如果DateInterval对象是由DateTime :: diff()创建的,那么这是开始日期和结束日期之间的总天数。否则,天数将为假。

请注意,这假设所有日期都是24小时,在夏令时区域可能不是这种情况

我已经写了以下函数来帮助解决这个问题:

/**
 * @param DateTimeInterface $a
 * @param DateTimeInterface $b
 * @param bool              $absolute Should the interval be forced to be positive?
 * @param string            $cap The greatest time unit to allow
 * 
 * @return DateInterval The difference as a time only interval
 */
function time_diff(DateTimeInterface $a, DateTimeInterface $b, $absolute=false, $cap='H'){
  // Get unix timestamps
  $b_raw = intval($b->format("U"));
  $a_raw = intval($a->format("U"));

  // Initial Interval properties
  $h = 0;
  $m = 0;
  $invert = 0;

  // Is interval negative?
  if(!$absolute && $b_raw<$a_raw){
    $invert = 1;
  }

  // Working diff, reduced as larger time units are calculated
  $working = abs($b_raw-$a_raw);

  // If capped at hours, calc and remove hours, cap at minutes
  if($cap == 'H') {
    $h = intval($working/3600);
    $working -= $h * 3600;
    $cap = 'M';
  }

  // If capped at minutes, calc and remove minutes
  if($cap == 'M') {
    $m = intval($working/60);
    $working -= $m * 60;
  }

  // Seconds remain
  $s = $working;

  // Build interval and invert if necessary
  $interval = new DateInterval('PT'.$h.'H'.$m.'M'.$s.'S');
  $interval->invert=$invert;

  return $interval;
}

可以使用:

$timetoreply = time_diff($replydue, $now);
echo $timetoreply->format('%r%H:%I');

N.B。由于manual中的评论,我使用了format('U')代替getTimestamp()

对于post-epoch和pre-negative-epoch日期,也不需要64位!

答案 1 :(得分:1)

您可以使用以下代码:

<?php
$date1 = "2014-05-27 01:00:00";
$date2 = "2014-05-28 02:00:00";
$timestamp1 = strtotime($date1);
$timestamp2 = strtotime($date2);
echo "Difference between two dates is " . $hour = abs($timestamp2 - $timestamp1)/(60*60) . " hour(s)";
?>

尝试按照上述过程进行操作。如果您需要任何帮助,我将很乐意提供帮助。

希望它能奏效。

来源:How to Calculate Hours Between Two Dates in PHP

答案 2 :(得分:1)

我会提供这个解决方案,如果你喜欢它几个小时:

echo $interval->format('%a')*24+$interval->format('%h');

关于下面的说明 - 它也可以这样:

echo $interval->days*24 + $interval->h;

答案 3 :(得分:0)

以下代码将输出任意两天之间的小时差异。在这种情况下,72。希望这有帮助!

<?php

$startTime = new \DateTime('now');
$endTime = new \DateTime('+3 day');
$differenceInHours = round((strtotime($startTime->format("Y-m-d H:i:s")) - strtotime($endTime->format("Y-m-d H:i:s")))/3600, 1);
echo $differenceInHours;