3v4l.org

run code in 300+ PHP versions simultaneously
<?php $diff = strtotime('2015-04-13T13:19:03+01:00') - strtotime('2015-04-14T10:55:28+01:00'); function secs_to_h($secs) { $units = array( "week" => 7*24*3600, "day" => 24*3600, "hour" => 3600, "minute" => 60, "second" => 1, ); // specifically handle zero if ( $secs == 0 ) return "0 seconds"; $s = ""; foreach ( $units as $name => $divisor ) { if ( $quot = intval($secs / $divisor) ) { $s .= "$quot $name"; $s .= (abs($quot) > 1 ? "s" : "") . ", "; $secs -= $quot * $divisor; } } return substr($s, 0, -2); } var_dump($diff, secs_to_h($diff));
Output for git.master, git.master_jit, rfc.property-hooks
int(-77785) string(35) "-21 hours, -36 minutes, -25 seconds"

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:
48.64 ms | 401 KiB | 8 Q