0

可能重复:
PHP:查找两个日期之间的天差(“YmdHis”)reture

我有两个约会

$departure_Dtae=2012-07-25T07:30:00
     $arrival_date =2012-07-25T10:25:00

T 表示时间,即2012-07-25T10:25:00日期为2012-07-25,时间为10:25:00(hr: mts: s)

我需要找出这两次之间的总小时数,即在这种情况下,总小时数是 2 小时 55 分钟 但我不知道我如何在 PHP 中计算这个 有人知道吗?

4

5 回答 5

3

如果使用 PHP 版本 5.3+,那么您可以使用 DateTime::diff():

<?php
    function getDiff($strStart, $strEnd) {
        $start  = DateTime::createFromFormat("Y-m-d G:i:s", $strStart);
        $end    = DateTime::createFromFormat("Y-m-d G:i:s", $strEnd);

        return $start->diff($end)->format('%hhrs %imins and %sseconds ');
    }

    var_dump(getDiff('2012-07-25 07:30:00', '2012-07-25 10:25:00'));
于 2012-08-06T10:29:26.393 回答
1
its simple
$departure_Dtae="2012-07-25T07:30:00";
$arrival_date ="2012-07-25T10:25:00";
$departure_Dtae=  str_replace("T", " ", $departure_Dtae);
$arrival_date=  str_replace("T", " ", $arrival_date);
$diff=  (strtotime($arrival_date)-strtotime($departure_Dtae));
echo date("h",$diff);
于 2012-08-06T10:44:52.970 回答
0

您可以在 php 中使用 DateTime 对象,该对象具有大量用于操作日期的方法。

DateTime::createFromFormat http://www.php.net/manual/en/datetime.createfromformat.php和 DateTime::diff http://www.php.net/manual/en/datetime.diff.php将是执行此任务所需的功能。

$date1 =  DateTime::createFromFormat('j-M-Y H:i', '15-Feb-2009 12:45');
$date2 =  DateTime::createFromFormat('j-M-Y H:i', '15-Feb-2009 13:45');
$interval = $date1->diff($date2);
echo $interval->format('H:i');
于 2012-08-06T10:31:36.677 回答
0
strtotime(date($arrival_date)) - strtotime(date($departure_date));

将以秒为单位为您提供时间差异,然后您可以根据需要进行操作。

于 2012-08-06T10:34:01.590 回答
0

尝试这个 :

$end_time = "2008-09-05 20:59:13";
$start_time = "2008-09-05 19:00:16";
$end = date("h:i:s",strtotime($end_time));
$start = date("h:i:s",strtotime($start_time));
$diff = strtotime($end) - strtotime($start);
//convert to min and sec
$convert_min = $diff/60;
$convert_sec = $diff % 60;//seconds
//convert to hours and min
$convert_hr = floor($convert_min/60);//hours
$remainder = floor($convert_min % 60);//minutes
$total_visit = $convert_hr.":".$remainder;  
于 2012-08-06T10:12:01.427 回答