<?php
function dateDiff($startdate, $enddate) {
$first = $startdate < $enddate ? $startdate : $enddate;
$second = $startdate < $enddate ? $enddate : $startdate;
$inbetween = $second - $first;
$i[0] = 60;
$i[1] = 24;
$i[2] = array(31, (date('L', strtotime('-1 year', $second)) ? 28 : 29), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
$months = 0;
$days = 0;
$tempDays = $inbetween / $i[0] / $i[0] / $i[1] / 365.25;
var_dump($tempDays);
$tempMonth = date('n', strtotime('-1 year', $second)) - 1;
for($n = 0; $n < 12; $n++) {
if($tempDays >= $i[2][$tempMonth]) {
$months += 1;
$tempDays -= $i[2][$tempMonth];
} else {
$days = floor($tempDays);
break;
}
$tempMonth = $tempMonth < 10 ? $tempMonth + 1 : 0;
}
$years = floor(date('Y', $second) - date('Y', $first) + $months / 12);
$months = $months % 12;
$hours = floor($inbetween / $i[0] / $i[0] % $i[1]);
$minutes = floor($inbetween / $i[0] % $i[0]);
$seconds = $inbetween % $i[0];
$dateObj = new stdClass();
$dateObj->years = $years;
$dateObj->months = $months;
$dateObj->days = $days;
$dateObj->hours = $hours;
$dateObj->minutes = $minutes;
$dateObj->seconds = $seconds;
return $dateObj;
}
$mydate = dateDiff(1388534400, 51417392000);
echo $mydate->years, " years, ", $mydate->months, " months, ", $mydate->days, " days, ", $mydate->hours, " hours, ", $mydate->minutes, " minutes, and ", $mydate->seconds, " seconds";
preferences:
59.65 ms | 407 KiB | 5 Q