3v4l.org

run code in 300+ PHP versions simultaneously
<?php date_default_timezone_set('UTC'); function dateDiff($startdate, $enddate) { $first = $startdate < $enddate ? $startdate : $enddate; $second = $startdate < $enddate ? $enddate : $startdate; $inbetween = $second - $first; $firsttemp = $first; $months = 0; $days = 0; while(TRUE) { if($firsttemp + 86400 * date('t', $firsttemp) <= $second) { $months += 1; $firsttemp += 86400 * date('t', $firsttemp); } else { if($second - $firsttemp >= 86400) { $days = floor(($second - $firsttemp) / 86400); } break; } } $years = floor($months / 12); $months = $months % 12; $hours = floor($inbetween / 60 / 60 % 24); $minutes = floor($inbetween / 60 % 60); $seconds = $inbetween % 60; $dateObj = new stdClass(); $dateObj->y = $years; $dateObj->m = $months; $dateObj->d = $days; $dateObj->h = $hours; $dateObj->i = $minutes; $dateObj->s = $seconds; $dateObj->days = floor($inbetween / 86400); return $dateObj; } $str1 = "1970-01-01"; $str2 = "2009-01-01"; $tempdate1 = $str1; $date1 = new DateTime($str1); $n = 0; while(strtotime($tempdate1) <= strtotime($str2)) { $date2 = new DateTime($tempdate1); $interval = $date1->diff($date2); $string1 = "(" . $interval->days . ") difference " . $interval->y . " years, " . $interval->m . " months, " . $interval->d . " days, " . $interval->h . " hours, " . $interval->i . " minutes, and " . $interval->s . " seconds"; $mydate = dateDiff(strtotime($str1), strtotime($tempdate1)); $string2 = "(" . $mydate->days . ") difference " . $mydate->y . " years, " . $mydate->m . " months, " . $mydate->d . " days, " . $mydate->h . " hours, " . $mydate->i . " minutes, and " . $mydate->s . " seconds"; if($string1 !== $string2) { echo "<span style=\"color:red;\">", $string1, " - ", $string2, "</span><br />"; // This will never run } else { echo "<span style=\"color:green;\">", $string1, " - ", $string2, "</span><br />"; } $n += 321; $tempdate1 = $str1 . " +" . $n . " sec"; }
Output for git.master, git.master_jit, rfc.property-hooks
<span style="color:green;">(0) difference 0 years, 0 months, 0 days, 0 hours, 0 minutes, and 0 seconds - (0) difference 0 years, 0 months, 0 days, 0 hours, 0 minutes, and 0 seconds</span><br /> Deprecated: Implicit conversion from float 0.08916666666666666 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 5.35 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 0 hours, 5 minutes, and 21 seconds - (0) difference 0 years, 0 months, 0 days, 0 hours, 5 minutes, and 21 seconds</span><br /> Deprecated: Implicit conversion from float 0.17833333333333332 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 10.7 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 0 hours, 10 minutes, and 42 seconds - (0) difference 0 years, 0 months, 0 days, 0 hours, 10 minutes, and 42 seconds</span><br /> Deprecated: Implicit conversion from float 0.2675 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 16.05 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 0 hours, 16 minutes, and 3 seconds - (0) difference 0 years, 0 months, 0 days, 0 hours, 16 minutes, and 3 seconds</span><br /> Deprecated: Implicit conversion from float 0.35666666666666663 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 21.4 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 0 hours, 21 minutes, and 24 seconds - (0) difference 0 years, 0 months, 0 days, 0 hours, 21 minutes, and 24 seconds</span><br /> Deprecated: Implicit conversion from float 0.44583333333333336 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 26.75 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 0 hours, 26 minutes, and 45 seconds - (0) difference 0 years, 0 months, 0 days, 0 hours, 26 minutes, and 45 seconds</span><br /> Deprecated: Implicit conversion from float 0.535 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 32.1 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 0 hours, 32 minutes, and 6 seconds - (0) difference 0 years, 0 months, 0 days, 0 hours, 32 minutes, and 6 seconds</span><br /> Deprecated: Implicit conversion from float 0.6241666666666668 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 37.45 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 0 hours, 37 minutes, and 27 seconds - (0) difference 0 years, 0 months, 0 days, 0 hours, 37 minutes, and 27 seconds</span><br /> Deprecated: Implicit conversion from float 0.7133333333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 42.8 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 0 hours, 42 minutes, and 48 seconds - (0) difference 0 years, 0 months, 0 days, 0 hours, 42 minutes, and 48 seconds</span><br /> Deprecated: Implicit conversion from float 0.8025 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 48.15 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 0 hours, 48 minutes, and 9 seconds - (0) difference 0 years, 0 months, 0 days, 0 hours, 48 minutes, and 9 seconds</span><br /> Deprecated: Implicit conversion from float 0.8916666666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 53.5 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 0 hours, 53 minutes, and 30 seconds - (0) difference 0 years, 0 months, 0 days, 0 hours, 53 minutes, and 30 seconds</span><br /> Deprecated: Implicit conversion from float 0.9808333333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 58.85 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 0 hours, 58 minutes, and 51 seconds - (0) difference 0 years, 0 months, 0 days, 0 hours, 58 minutes, and 51 seconds</span><br /> Deprecated: Implicit conversion from float 1.07 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 64.2 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 1 hours, 4 minutes, and 12 seconds - (0) difference 0 years, 0 months, 0 days, 1 hours, 4 minutes, and 12 seconds</span><br /> Deprecated: Implicit conversion from float 1.1591666666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 69.55 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 1 hours, 9 minutes, and 33 seconds - (0) difference 0 years, 0 months, 0 days, 1 hours, 9 minutes, and 33 seconds</span><br /> Deprecated: Implicit conversion from float 1.2483333333333335 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 74.9 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 1 hours, 14 minutes, and 54 seconds - (0) difference 0 years, 0 months, 0 days, 1 hours, 14 minutes, and 54 seconds</span><br /> Deprecated: Implicit conversion from float 1.3375 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 80.25 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 1 hours, 20 minutes, and 15 seconds - (0) difference 0 years, 0 months, 0 days, 1 hours, 20 minutes, and 15 seconds</span><br /> Deprecated: Implicit conversion from float 1.4266666666666665 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 85.6 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 1 hours, 25 minutes, and 36 seconds - (0) difference 0 years, 0 months, 0 days, 1 hours, 25 minutes, and 36 seconds</span><br /> Deprecated: Implicit conversion from float 1.5158333333333334 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 90.95 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 1 hours, 30 minutes, and 57 seconds - (0) difference 0 years, 0 months, 0 days, 1 hours, 30 minutes, and 57 seconds</span><br /> Deprecated: Implicit conversion from float 1.605 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 96.3 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 1 hours, 36 minutes, and 18 seconds - (0) difference 0 years, 0 months, 0 days, 1 hours, 36 minutes, and 18 seconds</span><br /> Deprecated: Implicit conversion from float 1.6941666666666668 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 101.65 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 1 hours, 41 minutes, and 39 seconds - (0) difference 0 years, 0 months, 0 days, 1 hours, 41 minutes, and 39 seconds</span><br /> Deprecated: Implicit conversion from float 1.7833333333333334 to int loses precision in /in/0nnCO on line 30 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 1 hours, 47 minutes, and 0 seconds - (0) difference 0 years, 0 months, 0 days, 1 hours, 47 minutes, and 0 seconds</span><br /> Deprecated: Implicit conversion from float 1.8724999999999998 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 112.35 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 1 hours, 52 minutes, and 21 seconds - (0) difference 0 years, 0 months, 0 days, 1 hours, 52 minutes, and 21 seconds</span><br /> Deprecated: Implicit conversion from float 1.9616666666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 117.7 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 1 hours, 57 minutes, and 42 seconds - (0) difference 0 years, 0 months, 0 days, 1 hours, 57 minutes, and 42 seconds</span><br /> Deprecated: Implicit conversion from float 2.0508333333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 123.05 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 2 hours, 3 minutes, and 3 seconds - (0) difference 0 years, 0 months, 0 days, 2 hours, 3 minutes, and 3 seconds</span><br /> Deprecated: Implicit conversion from float 2.14 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 128.4 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 2 hours, 8 minutes, and 24 seconds - (0) difference 0 years, 0 months, 0 days, 2 hours, 8 minutes, and 24 seconds</span><br /> Deprecated: Implicit conversion from float 2.2291666666666665 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 133.75 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 2 hours, 13 minutes, and 45 seconds - (0) difference 0 years, 0 months, 0 days, 2 hours, 13 minutes, and 45 seconds</span><br /> Deprecated: Implicit conversion from float 2.3183333333333334 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 139.1 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 2 hours, 19 minutes, and 6 seconds - (0) difference 0 years, 0 months, 0 days, 2 hours, 19 minutes, and 6 seconds</span><br /> Deprecated: Implicit conversion from float 2.4074999999999998 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 144.45 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 2 hours, 24 minutes, and 27 seconds - (0) difference 0 years, 0 months, 0 days, 2 hours, 24 minutes, and 27 seconds</span><br /> Deprecated: Implicit conversion from float 2.496666666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 149.8 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 2 hours, 29 minutes, and 48 seconds - (0) difference 0 years, 0 months, 0 days, 2 hours, 29 minutes, and 48 seconds</span><br /> Deprecated: Implicit conversion from float 2.5858333333333334 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 155.15 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 2 hours, 35 minutes, and 9 seconds - (0) difference 0 years, 0 months, 0 days, 2 hours, 35 minutes, and 9 seconds</span><br /> Deprecated: Implicit conversion from float 2.675 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 160.5 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 2 hours, 40 minutes, and 30 seconds - (0) difference 0 years, 0 months, 0 days, 2 hours, 40 minutes, and 30 seconds</span><br /> Deprecated: Implicit conversion from float 2.7641666666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 165.85 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 2 hours, 45 minutes, and 51 seconds - (0) difference 0 years, 0 months, 0 days, 2 hours, 45 minutes, and 51 seconds</span><br /> Deprecated: Implicit conversion from float 2.853333333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 171.2 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 2 hours, 51 minutes, and 12 seconds - (0) difference 0 years, 0 months, 0 days, 2 hours, 51 minutes, and 12 seconds</span><br /> Deprecated: Implicit conversion from float 2.9425000000000003 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 176.55 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 2 hours, 56 minutes, and 33 seconds - (0) difference 0 years, 0 months, 0 days, 2 hours, 56 minutes, and 33 seconds</span><br /> Deprecated: Implicit conversion from float 3.0316666666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 181.9 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 3 hours, 1 minutes, and 54 seconds - (0) difference 0 years, 0 months, 0 days, 3 hours, 1 minutes, and 54 seconds</span><br /> Deprecated: Implicit conversion from float 3.120833333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 187.25 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 3 hours, 7 minutes, and 15 seconds - (0) difference 0 years, 0 months, 0 days, 3 hours, 7 minutes, and 15 seconds</span><br /> Deprecated: Implicit conversion from float 3.21 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 192.6 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 3 hours, 12 minutes, and 36 seconds - (0) difference 0 years, 0 months, 0 days, 3 hours, 12 minutes, and 36 seconds</span><br /> Deprecated: Implicit conversion from float 3.2991666666666664 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 197.95 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 3 hours, 17 minutes, and 57 seconds - (0) difference 0 years, 0 months, 0 days, 3 hours, 17 minutes, and 57 seconds</span><br /> Deprecated: Implicit conversion from float 3.3883333333333336 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 203.3 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 3 hours, 23 minutes, and 18 seconds - (0) difference 0 years, 0 months, 0 days, 3 hours, 23 minutes, and 18 seconds</span><br /> Deprecated: Implicit conversion from float 3.4775 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 208.65 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 3 hours, 28 minutes, and 39 seconds - (0) difference 0 years, 0 months, 0 days, 3 hours, 28 minutes, and 39 seconds</span><br /> Deprecated: Implicit conversion from float 3.566666666666667 to int loses precision in /in/0nnCO on line 30 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 3 hours, 34 minutes, and 0 seconds - (0) difference 0 years, 0 months, 0 days, 3 hours, 34 minutes, and 0 seconds</span><br /> Deprecated: Implicit conversion from float 3.6558333333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 219.35 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 3 hours, 39 minutes, and 21 seconds - (0) difference 0 years, 0 months, 0 days, 3 hours, 39 minutes, and 21 seconds</span><br /> Deprecated: Implicit conversion from float 3.7449999999999997 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 224.7 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 3 hours, 44 minutes, and 42 seconds - (0) difference 0 years, 0 months, 0 days, 3 hours, 44 minutes, and 42 seconds</span><br /> Deprecated: Implicit conversion from float 3.834166666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 230.05 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 3 hours, 50 minutes, and 3 seconds - (0) difference 0 years, 0 months, 0 days, 3 hours, 50 minutes, and 3 seconds</span><br /> Deprecated: Implicit conversion from float 3.9233333333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 235.4 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 3 hours, 55 minutes, and 24 seconds - (0) difference 0 years, 0 months, 0 days, 3 hours, 55 minutes, and 24 seconds</span><br /> Deprecated: Implicit conversion from float 4.0125 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 240.75 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 4 hours, 0 minutes, and 45 seconds - (0) difference 0 years, 0 months, 0 days, 4 hours, 0 minutes, and 45 seconds</span><br /> Deprecated: Implicit conversion from float 4.101666666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 246.1 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 4 hours, 6 minutes, and 6 seconds - (0) difference 0 years, 0 months, 0 days, 4 hours, 6 minutes, and 6 seconds</span><br /> Deprecated: Implicit conversion from float 4.190833333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 251.45 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 4 hours, 11 minutes, and 27 seconds - (0) difference 0 years, 0 months, 0 days, 4 hours, 11 minutes, and 27 seconds</span><br /> Deprecated: Implicit conversion from float 4.28 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 256.8 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 4 hours, 16 minutes, and 48 seconds - (0) difference 0 years, 0 months, 0 days, 4 hours, 16 minutes, and 48 seconds</span><br /> Deprecated: Implicit conversion from float 4.369166666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 262.15 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 4 hours, 22 minutes, and 9 seconds - (0) difference 0 years, 0 months, 0 days, 4 hours, 22 minutes, and 9 seconds</span><br /> Deprecated: Implicit conversion from float 4.458333333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 267.5 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 4 hours, 27 minutes, and 30 seconds - (0) difference 0 years, 0 months, 0 days, 4 hours, 27 minutes, and 30 seconds</span><br /> Deprecated: Implicit conversion from float 4.5475 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 272.85 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 4 hours, 32 minutes, and 51 seconds - (0) difference 0 years, 0 months, 0 days, 4 hours, 32 minutes, and 51 seconds</span><br /> Deprecated: Implicit conversion from float 4.636666666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 278.2 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 4 hours, 38 minutes, and 12 seconds - (0) difference 0 years, 0 months, 0 days, 4 hours, 38 minutes, and 12 seconds</span><br /> Deprecated: Implicit conversion from float 4.725833333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 283.55 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 4 hours, 43 minutes, and 33 seconds - (0) difference 0 years, 0 months, 0 days, 4 hours, 43 minutes, and 33 seconds</span><br /> Deprecated: Implicit conversion from float 4.8149999999999995 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 288.9 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 4 hours, 48 minutes, and 54 seconds - (0) difference 0 years, 0 months, 0 days, 4 hours, 48 minutes, and 54 seconds</span><br /> Deprecated: Implicit conversion from float 4.904166666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 294.25 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 4 hours, 54 minutes, and 15 seconds - (0) difference 0 years, 0 months, 0 days, 4 hours, 54 minutes, and 15 seconds</span><br /> Deprecated: Implicit conversion from float 4.993333333333334 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 299.6 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 4 hours, 59 minutes, and 36 seconds - (0) difference 0 years, 0 months, 0 days, 4 hours, 59 minutes, and 36 seconds</span><br /> Deprecated: Implicit conversion from float 5.0825 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 304.95 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 5 hours, 4 minutes, and 57 seconds - (0) difference 0 years, 0 months, 0 days, 5 hours, 4 minutes, and 57 seconds</span><br /> Deprecated: Implicit conversion from float 5.171666666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 310.3 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 5 hours, 10 minutes, and 18 seconds - (0) difference 0 years, 0 months, 0 days, 5 hours, 10 minutes, and 18 seconds</span><br /> Deprecated: Implicit conversion from float 5.260833333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 315.65 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 5 hours, 15 minutes, and 39 seconds - (0) difference 0 years, 0 months, 0 days, 5 hours, 15 minutes, and 39 seconds</span><br /> Deprecated: Implicit conversion from float 5.35 to int loses precision in /in/0nnCO on line 30 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 5 hours, 21 minutes, and 0 seconds - (0) difference 0 years, 0 months, 0 days, 5 hours, 21 minutes, and 0 seconds</span><br /> Deprecated: Implicit conversion from float 5.439166666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 326.35 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 5 hours, 26 minutes, and 21 seconds - (0) difference 0 years, 0 months, 0 days, 5 hours, 26 minutes, and 21 seconds</span><br /> Deprecated: Implicit conversion from float 5.528333333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 331.7 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 5 hours, 31 minutes, and 42 seconds - (0) difference 0 years, 0 months, 0 days, 5 hours, 31 minutes, and 42 seconds</span><br /> Deprecated: Implicit conversion from float 5.617500000000001 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 337.05 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 5 hours, 37 minutes, and 3 seconds - (0) difference 0 years, 0 months, 0 days, 5 hours, 37 minutes, and 3 seconds</span><br /> Deprecated: Implicit conversion from float 5.706666666666666 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 342.4 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 5 hours, 42 minutes, and 24 seconds - (0) difference 0 years, 0 months, 0 days, 5 hours, 42 minutes, and 24 seconds</span><br /> Deprecated: Implicit conversion from float 5.795833333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 347.75 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 5 hours, 47 minutes, and 45 seconds - (0) difference 0 years, 0 months, 0 days, 5 hours, 47 minutes, and 45 seconds</span><br /> Deprecated: Implicit conversion from float 5.885000000000001 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 353.1 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 5 hours, 53 minutes, and 6 seconds - (0) difference 0 years, 0 months, 0 days, 5 hours, 53 minutes, and 6 seconds</span><br /> Deprecated: Implicit conversion from float 5.974166666666666 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 358.45 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 5 hours, 58 minutes, and 27 seconds - (0) difference 0 years, 0 months, 0 days, 5 hours, 58 minutes, and 27 seconds</span><br /> Deprecated: Implicit conversion from float 6.0633333333333335 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 363.8 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 6 hours, 3 minutes, and 48 seconds - (0) difference 0 years, 0 months, 0 days, 6 hours, 3 minutes, and 48 seconds</span><br /> Deprecated: Implicit conversion from float 6.1525 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 369.15 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 6 hours, 9 minutes, and 9 seconds - (0) difference 0 years, 0 months, 0 days, 6 hours, 9 minutes, and 9 seconds</span><br /> Deprecated: Implicit conversion from float 6.241666666666666 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 374.5 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 6 hours, 14 minutes, and 30 seconds - (0) difference 0 years, 0 months, 0 days, 6 hours, 14 minutes, and 30 seconds</span><br /> Deprecated: Implicit conversion from float 6.3308333333333335 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 379.85 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 6 hours, 19 minutes, and 51 seconds - (0) difference 0 years, 0 months, 0 days, 6 hours, 19 minutes, and 51 seconds</span><br /> Deprecated: Implicit conversion from float 6.42 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 385.2 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 6 hours, 25 minutes, and 12 seconds - (0) difference 0 years, 0 months, 0 days, 6 hours, 25 minutes, and 12 seconds</span><br /> Deprecated: Implicit conversion from float 6.509166666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 390.55 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 6 hours, 30 minutes, and 33 seconds - (0) difference 0 years, 0 months, 0 days, 6 hours, 30 minutes, and 33 seconds</span><br /> Deprecated: Implicit conversion from float 6.598333333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 395.9 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 6 hours, 35 minutes, and 54 seconds - (0) difference 0 years, 0 months, 0 days, 6 hours, 35 minutes, and 54 seconds</span><br /> Deprecated: Implicit conversion from float 6.6875 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 401.25 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 6 hours, 41 minutes, and 15 seconds - (0) difference 0 years, 0 months, 0 days, 6 hours, 41 minutes, and 15 seconds</span><br /> Deprecated: Implicit conversion from float 6.776666666666667 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 406.6 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 6 hours, 46 minutes, and 36 seconds - (0) difference 0 years, 0 months, 0 days, 6 hours, 46 minutes, and 36 seconds</span><br /> Deprecated: Implicit conversion from float 6.865833333333333 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 411.95 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 6 hours, 51 minutes, and 57 seconds - (0) difference 0 years, 0 months, 0 days, 6 hours, 51 minutes, and 57 seconds</span><br /> Deprecated: Implicit conversion from float 6.955 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 417.3 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 6 hours, 57 minutes, and 18 seconds - (0) difference 0 years, 0 months, 0 days, 6 hours, 57 minutes, and 18 seconds</span><br /> Deprecated: Implicit conversion from float 7.0441666666666665 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 422.65 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 7 hours, 2 minutes, and 39 seconds - (0) difference 0 years, 0 months, 0 days, 7 hours, 2 minutes, and 39 seconds</span><br /> Deprecated: Implicit conversion from float 7.133333333333334 to int loses precision in /in/0nnCO on line 30 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 7 hours, 8 minutes, and 0 seconds - (0) difference 0 years, 0 months, 0 days, 7 hours, 8 minutes, and 0 seconds</span><br /> Deprecated: Implicit conversion from float 7.2225 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 433.35 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 7 hours, 13 minutes, and 21 seconds - (0) difference 0 years, 0 months, 0 days, 7 hours, 13 minutes, and 21 seconds</span><br /> Deprecated: Implicit conversion from float 7.3116666666666665 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float 438.7 to int loses precision in /in/0nnCO on line 31 <span style="color:green;">(0) difference 0 years, 0 months, 0 days, 7 hours, 18 minutes, and 42 seconds - (0) difference 0 years, 0 months, 0 days, 7 hours, 18 minutes, and 42 seconds</span><br /> Deprecated: Implicit conversion from float 7.400833333333334 to int loses precision in /in/0nnCO on line 30 Deprecated: Implicit conversion from float
Process exited with code 137.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
82.95 ms | 437 KiB | 8 Q