3v4l.org

run code in 300+ PHP versions simultaneously
<?php function calcDays($startdate, $enddate) { $first = $startdate < $enddate ? $startdate : $enddate; $second = $startdate < $enddate ? $enddate : $startdate; $inbetween = $second - $first; $minute = 60; $hour = $minute * 60; $day = $hour * 24; $week = $day * 7; $month = -20; $days = floor($inbetween / 60 / 60 / 24 - $month + 25); $hours = floor($inbetween / 60 / 60 % 24); $minutes = floor($inbetween / 60); $seconds = $inbetween % $minutes; return $days . " " . $hours . " " . $minutes . " " . $seconds . " " . $inbetween; } echo calcDays(1388389156, 1388392817);

preferences:
34.57 ms | 402 KiB | 5 Q