3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getRoundedCutoff ($t) { $time = explode(':', $t); if ( $time[2] > 30 ) $time[1] = intval($time[1]) + 1; $time[2] = '00'; $rmin = $time[1] % 15; $dt = new DateTime( implode(':', $time) ); if ( $rmin > 7 ) { $dt->add(new DateInterval('PT'.(15-$rmin).'M')); } else { $dt->sub(new DateInterval('PT'.$rmin.'M')); } return $dt->format('H:i:s'); } $times = array( '10:52:00', '10:52:59', '10:53:00', '10:50:00', '10:50:14', '10:50:59', '10:50:45', '01:12:00', '01:05:00', '01:58:00', '01:58:59', '01:59:59', '01:01:00', ); foreach ($times as $time) { var_dump($time.' -> '.getRoundedCutoff($time)); }
Output for git.master, git.master_jit
string(20) "10:52:00 -> 10:45:00" string(20) "10:52:59 -> 11:00:00" string(20) "10:53:00 -> 11:00:00" string(20) "10:50:00 -> 10:45:00" string(20) "10:50:14 -> 10:45:00" string(20) "10:50:59 -> 10:45:00" string(20) "10:50:45 -> 10:45:00" string(20) "01:12:00 -> 01:15:00" string(20) "01:05:00 -> 01:00:00" string(20) "01:58:00 -> 02:00:00" string(20) "01:58:59 -> 02:00:00" Fatal error: Uncaught Exception: Failed to parse time string (01:60:00) at position 4 (0): Double time specification in /in/SJ20Q:9 Stack trace: #0 /in/SJ20Q(9): DateTime->__construct('01:60:00') #1 /in/SJ20Q(37): getRoundedCutoff('01:59:59') #2 {main} thrown in /in/SJ20Q on line 9
Process exited with code 255.
Output for rfc.property-hooks
string(20) "10:52:00 -> 10:45:00" string(20) "10:52:59 -> 11:00:00" string(20) "10:53:00 -> 11:00:00" string(20) "10:50:00 -> 10:45:00" string(20) "10:50:14 -> 10:45:00" string(20) "10:50:59 -> 10:45:00" string(20) "10:50:45 -> 10:45:00" string(20) "01:12:00 -> 01:15:00" string(20) "01:05:00 -> 01:00:00" string(20) "01:58:00 -> 02:00:00" string(20) "01:58:59 -> 02:00:00" Fatal error: Uncaught DateMalformedStringException: Failed to parse time string (01:60:00) at position 4 (0): Double time specification in /in/SJ20Q:9 Stack trace: #0 /in/SJ20Q(9): DateTime->__construct('01:60:00') #1 /in/SJ20Q(37): getRoundedCutoff('01:59:59') #2 {main} thrown in /in/SJ20Q on line 9
Process exited with code 255.

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:
47.32 ms | 402 KiB | 8 Q