如何在PHP中获得以分钟为单位的时差


Answers:


92

从过去的一减去最近的一并除以60。

时间以Unix格式完成,因此它们只是一个很大的数字,显示从 January 1, 1970, 00:00:00 GMT


1
@Jerald此解决方案如何为您工作?您介意简要介绍一下吗?谢谢。
瓦菲·阿里

7
@WafieAli $ nInterval = strtotime($ sDate2)-strtotime($ sDate1); 这将返回以秒为单位的时差,然后您可以像这样除以60。$ nInterval = $ nInterval / 60;
杰拉尔德

+1用于解释需要执行的操作,而不是使用无用的DateInterval类,该类没有方法可以做到这一点:以分钟为单位返回差异。
AndreKR

404

上面的答案适用于旧版本的PHP。既然PHP 5.3已经成为标准,就可以使用DateTime类进行任何日期计算。例如。

$start_date = new DateTime('2007-09-01 04:10:58');
$since_start = $start_date->diff(new DateTime('2012-09-11 10:25:00'));
echo $since_start->days.' days total<br>';
echo $since_start->y.' years<br>';
echo $since_start->m.' months<br>';
echo $since_start->d.' days<br>';
echo $since_start->h.' hours<br>';
echo $since_start->i.' minutes<br>';
echo $since_start->s.' seconds<br>';

$ since_start是一个DateInterval对象。请注意,days属性可用(因为我们使用DateTime类的diff方法生成了DateInterval对象)。

上面的代码将输出:

总计1837天
5年
0个月
10天
6小时
14分钟
2秒

要获取总分钟数:

$minutes = $since_start->days * 24 * 60;
$minutes += $since_start->h * 60;
$minutes += $since_start->i;
echo $minutes.' minutes';

这将输出:

2645654分钟

这是两个日期之间经过的实际分钟数。DateTime类将考虑“夏令时”不会采用的夏令时(取决于时区)。阅读有关日期和时间的手册http://www.php.net/manual/zh/book.datetime.php


12
Pitty DateInterval没有inSeconds()类似方法或类似方法,现在到处都需要我在几秒钟内计算差异的代码重复。
MariusBalčytis2012年

5
@barius或者您可以编写一个包装重复代码的函数,甚至扩展DateTime而不重复代码。
2013年

17
撰写此评论时,+ 1是唯一正确的答案。
NB

8
使用新的DateTime类是好的,但是为什么要生成一个DateInterval,然后必须如此笨拙地对其进行解码?$dateFrom = new DateTime('2007-09-01 04:10:58'); $dateTo = new DateTime('2012-09-11 10:25:00'); echo ($dateTo->getTimestamp()-$dateFrom->getTimestamp())/60 ;
dkloke 2014年

2
有人可以向我解释为什么这比strtotime上面的答案更好吗?当过程至少是有效(且更加简洁)的解决方案时,这似乎是OOP的一种情况。
必应

341

答案是:

$to_time = strtotime("2008-12-13 10:42:00");
$from_time = strtotime("2008-12-13 10:21:00");
echo round(abs($to_time - $from_time) / 60,2). " minute";

4
如果有人也想检查负时间,则不需要abs()函数!
潘(Pran)2015年

34
对于那些想知道的人,/ 60,2方法是:除以60,四舍五入到最接近的小数点后两位。
必应

3
strtotime不可靠,请避免。仅适用于特定的日期格式,大部分与美国相关。
sivann 2016年

14
strtotime可能已经过时,但如果使用得当,也不是不可靠。可以说,您需要使用一致的日期格式才能正确读取(或解析)日期。看ISO 8601,不要怪工具:=)
Phil

34
<?php
$date1 = time();
sleep(2000);
$date2 = time();
$mins = ($date2 - $date1) / 60;
echo $mins;
?>

1
与上面的内容不同,这非常整洁且易于解释。
TheRealChx101

您能解释一下为什么需要一些sleep日期差吗?
Nico Haase

2
与快速入睡相比,还有一种更好的方式来利用您的时间等待另一个时间进行比较。尽管从理论上讲应该可以给您2的答案,这可以帮助尝试理解该公式的人,确认它是正确的。
slappy-x

15

它正在我的程序上运行,我正在使用date_diff,您可以date_diff此处查看手册。

$start = date_create('2015-01-26 12:01:00');
$end = date_create('2015-01-26 13:15:00');
$diff=date_diff($end,$start);
print_r($diff);

您得到的结果是您想要的。


1
对于我来说,奇怪的是,执行该代码并没有提供以分钟为单位的时差
Nico Haase

仅当您要输出“ 1hr 14mins”时,此功能才有用。例如,如果只想分钟,则必须做一下数学运算:($ diff-> h * 60)+ $ diff-> i)
GDP

13

时区的另一种方式。

$start_date = new DateTime("2013-12-24 06:00:00",new DateTimeZone('Pacific/Nauru'));
$end_date = new DateTime("2013-12-24 06:45:00", new DateTimeZone('Pacific/Nauru'));
$interval = $start_date->diff($end_date);
$hours   = $interval->format('%h'); 
$minutes = $interval->format('%i');
echo  'Diff. in minutes is: '.($hours * 60 + $minutes);

4
如果您也想要几天,那么您要添加$days = $interval->format('%d');,而diff是($days * 1440 + $hours * 60 + $minutes)。几个月,几年=>相同的逻辑
Seer 2014年

12

我为我的一个博客站点编写了此功能(过去日期和服务器日期之间的差异)。它会给你这样的输出

“ 49秒前”,“ 20分钟前”,“ 21小时前”,依此类推

我使用了一个函数,该函数可以使我知道传递的日期与服务器的日期之间的差。

<?php

//Code written by purpledesign.in Jan 2014
function dateDiff($date)
{
  $mydate= date("Y-m-d H:i:s");
  $theDiff="";
  //echo $mydate;//2014-06-06 21:35:55
  $datetime1 = date_create($date);
  $datetime2 = date_create($mydate);
  $interval = date_diff($datetime1, $datetime2);
  //echo $interval->format('%s Seconds %i Minutes %h Hours %d days %m Months %y Year    Ago')."<br>";
  $min=$interval->format('%i');
  $sec=$interval->format('%s');
  $hour=$interval->format('%h');
  $mon=$interval->format('%m');
  $day=$interval->format('%d');
  $year=$interval->format('%y');
  if($interval->format('%i%h%d%m%y')=="00000")
  {
    //echo $interval->format('%i%h%d%m%y')."<br>";
    return $sec." Seconds";

  } 

else if($interval->format('%h%d%m%y')=="0000"){
   return $min." Minutes";
   }


else if($interval->format('%d%m%y')=="000"){
   return $hour." Hours";
   }


else if($interval->format('%m%y')=="00"){
   return $day." Days";
   }

else if($interval->format('%y')=="0"){
   return $mon." Months";
   }

else{
   return $year." Years";
   }

}
?>

假设“ date.php”将其保存为文件。像这样从另一个页面调用函数

<?php
 require('date.php');
 $mydate='2014-11-14 21:35:55';
 echo "The Difference between the server's date and $mydate is:<br> ";
 echo dateDiff($mydate);
?>

当然,您可以修改函数以传递两个值。


10

我认为这对您有帮助

function calculate_time_span($date){
    $seconds  = strtotime(date('Y-m-d H:i:s')) - strtotime($date);

        $months = floor($seconds / (3600*24*30));
        $day = floor($seconds / (3600*24));
        $hours = floor($seconds / 3600);
        $mins = floor(($seconds - ($hours*3600)) / 60);
        $secs = floor($seconds % 60);

        if($seconds < 60)
            $time = $secs." seconds ago";
        else if($seconds < 60*60 )
            $time = $mins." min ago";
        else if($seconds < 24*60*60)
            $time = $hours." hours ago";
        else if($seconds < 24*60*60)
            $time = $day." day ago";
        else
            $time = $months." month ago";

        return $time;
}

请为您的代码添加一些解释,以便OP可以从中学习
Nico Haase

对于分钟$minutes = floor(($seconds/60)%60);
Aravindh戈皮

8
function date_getFullTimeDifference( $start, $end )
{
$uts['start']      =    strtotime( $start );
        $uts['end']        =    strtotime( $end );
        if( $uts['start']!==-1 && $uts['end']!==-1 )
        {
            if( $uts['end'] >= $uts['start'] )
            {
                $diff    =    $uts['end'] - $uts['start'];
                if( $years=intval((floor($diff/31104000))) )
                    $diff = $diff % 31104000;
                if( $months=intval((floor($diff/2592000))) )
                    $diff = $diff % 2592000;
                if( $days=intval((floor($diff/86400))) )
                    $diff = $diff % 86400;
                if( $hours=intval((floor($diff/3600))) )
                    $diff = $diff % 3600;
                if( $minutes=intval((floor($diff/60))) )
                    $diff = $diff % 60;
                $diff    =    intval( $diff );
                return( array('years'=>$years,'months'=>$months,'days'=>$days, 'hours'=>$hours, 'minutes'=>$minutes, 'seconds'=>$diff) );
            }
            else
            {
                echo "Ending date/time is earlier than the start date/time";
            }
        }
        else
        {
            echo "Invalid date/time data detected";
        }
}

8

一个更通用的版本,以天,小时,分钟或秒为单位返回结果,包括小数/小数:

function DateDiffInterval($sDate1, $sDate2, $sUnit='H') {
//subtract $sDate2-$sDate1 and return the difference in $sUnit (Days,Hours,Minutes,Seconds)
    $nInterval = strtotime($sDate2) - strtotime($sDate1);
    if ($sUnit=='D') { // days
        $nInterval = $nInterval/60/60/24;
    } else if ($sUnit=='H') { // hours
        $nInterval = $nInterval/60/60;
    } else if ($sUnit=='M') { // minutes
        $nInterval = $nInterval/60;
    } else if ($sUnit=='S') { // seconds
    }
    return $nInterval;
} //DateDiffInterval

请为您的代码添加一些解释,以便OP可以从中学习
Nico Haase

7

这就是我在php> 5.2中显示“ xx倍以前”的方式。这是有关DateTime对象的更多信息

//Usage:
$pubDate = $row['rssfeed']['pubDates']; // e.g. this could be like 'Sun, 10 Nov 2013 14:26:00 GMT'
$diff = ago($pubDate);    // output: 23 hrs ago

// Return the value of time different in "xx times ago" format
function ago($timestamp)
{

$today = new DateTime(date('y-m-d h:i:s')); // [2]
//$thatDay = new DateTime('Sun, 10 Nov 2013 14:26:00 GMT');
$thatDay = new DateTime($timestamp);
$dt = $today->diff($thatDay);

if ($dt->y > 0)
{
    $number = $dt->y;
    $unit = "year";
}
else if ($dt->m > 0)
{
    $number = $dt->m;
    $unit = "month";
}   
else if ($dt->d > 0)
{
    $number = $dt->d;
   $unit = "day";
}
else if ($dt->h > 0)
{
    $number = $dt->h;
    $unit = "hour";
}
else if ($dt->i > 0)
{
    $number = $dt->i;
    $unit = "minute";
}
else if ($dt->s > 0)
{
    $number = $dt->s;
    $unit = "second";
}

$unit .= $number  > 1 ? "s" : "";

$ret = $number." ".$unit." "."ago";
return $ret;
}


3

减去时间除以60。

这是一个2019/02/01 10:23:45以分钟为单位计算经过时间的示例:

$diff_time=(strtotime(date("Y/m/d H:i:s"))-strtotime("2019/02/01 10:23:45"))/60;

2

我找到两个日期之间差异的解决方案在这里。使用此功能,您可以找到诸如秒,分钟,小时,天,年和月之类的差异。

function alihan_diff_dates($date = null, $diff = "minutes") {
 $start_date = new DateTime($date);
 $since_start = $start_date->diff(new DateTime( date('Y-m-d H:i:s') )); // date now
 print_r($since_start);
 switch ($diff) {
    case 'seconds':
        return $since_start->s;
        break;
    case 'minutes':
        return $since_start->i;
        break;
    case 'hours':
        return $since_start->h;
        break;
    case 'days':
        return $since_start->d;
        break;      
    default:
        # code...
        break;
 }
}

您可以开发此功能。我测试并为我工作。DateInterval对象的输出在这里:

/*
DateInterval Object ( [y] => 0 [m] => 0 [d] => 0 [h] => 0 [i] => 5 [s] => 13 [f] => 0 [weekday] => 0 [weekday_behavior] => 0 [first_last_day_of] => 0 [invert] => 0 [days] => 0 [special_type] => 0 [special_amount] => 0 [have_weekday_relative] => 0 [have_special_relative] => 0 ) 
*/

功能用法:

$ date =过去的日期,$ diff =类型,例如:“分钟”,“天”,“秒”

$diff_mins = alihan_diff_dates("2019-03-24 13:24:19", "minutes");

祝好运。


0

这将帮助...。

function get_time($date,$nosuffix=''){
    $datetime = new DateTime($date);
    $interval = date_create('now')->diff( $datetime );
    if(empty($nosuffix))$suffix = ( $interval->invert ? ' ago' : '' );
    else $suffix='';
    //return $interval->y;
    if($interval->y >=1)        {$count = date(VDATE, strtotime($date)); $text = '';}
    elseif($interval->m >=1)    {$count = date('M d', strtotime($date)); $text = '';}
    elseif($interval->d >=1)    {$count = $interval->d; $text = 'day';} 
    elseif($interval->h >=1)    {$count = $interval->h; $text = 'hour';}
    elseif($interval->i >=1)    {$count = $interval->i; $text = 'minute';}
    elseif($interval->s ==0)    {$count = 'Just Now'; $text = '';}
    else                        {$count = $interval->s; $text = 'second';}
    if(empty($text)) return '<i class="fa fa-clock-o"></i> '.$count;
    return '<i class="fa fa-clock-o"></i> '.$count.(($count ==1)?(" $text"):(" ${text}s")).' '.$suffix;     
}

1
请为您的代码添加一些解释,以便OP可以从中学习
Nico Haase

0

我找到了很多解决方案,但从未得到正确的解决方案。但是我创建了一些代码来查找分钟,请检查一下。

<?php

  $time1 = "23:58";
  $time2 = "01:00";
  $time1 = explode(':',$time1);
  $time2 = explode(':',$time2);
  $hours1 = $time1[0];
  $hours2 = $time2[0];
  $mins1 = $time1[1];
  $mins2 = $time2[1];
  $hours = $hours2 - $hours1;
  $mins = 0;
  if($hours < 0)
  {
    $hours = 24 + $hours;
  }
  if($mins2 >= $mins1) {
        $mins = $mins2 - $mins1;
    }
    else {
      $mins = ($mins2 + 60) - $mins1;
      $hours--;
    }
    if($mins < 9)
    {
      $mins = str_pad($mins, 2, '0', STR_PAD_LEFT);
    }
    if($hours < 9)
    {
      $hours =str_pad($hours, 2, '0', STR_PAD_LEFT);
    }
echo $hours.':'.$mins;
?>

它以小时和分钟为单位给出输出,例如01小时02分钟,如01:02

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.