我有一个日期时差 -
我需要将那些日子计算到小时。
$start = '2016-05-26 19:05:00';
$end = '2016-05-29 17:05:00';
$datetime1 = new DateTime($start);
$datetime2 = new DateTime($end);
$interval = $datetime1->diff($datetime2);
echo $interval->format("%h Hours %i Min %s Sec"); //22 Hours 0 Min 0 Sec
我知道:
echo $interval->format('%d days');
我试试这个:
echo $interval->format("(%h + %d * 24) Hours %i Min %s Sec"); //(22 + 8 * 24) Hours 0 Min 0 Sec
答案 0 :(得分:0)
$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>';
echo (($since_start->days)*24)+$since_start->h.' Total Hours<br>';
使用此条件计算天数,然后使用24小时加上剩余小时数
答案 1 :(得分:0)
它很简单,虽然不能自动完成,但你必须编写代码。
以下是您所需要的一切:
$start = '2016-05-26 19:05:00';
$end = '2016-05-29 17:05:00';
$datetime1 = new DateTime($start);
$datetime2 = new DateTime($end);
$interval = $datetime1->diff($datetime2);
// Below this line is where the magic takes place:
$hourDiff = ($interval->d*24)+($interval->h); //here we calculate the hours
echo $hourDiff //prints 77 because 2 days*24 hours each + 22 hours = 77
在我的例子中,我还考虑了年份和月份(分别为y和m),但如果你不想要它们,你可以删除它们。