3v4l.org

run code in 300+ PHP versions simultaneously
<?php $numbers = [1, 2, 3, 4, 5, 6, 7, 11, 21, 22, 23, 24]; $prev = -1; foreach ($numbers as $n) { if (!isset($start)) { $start = $n; } elseif ($n != $prev + 1) { $result[] = $start == $prev ? $prev : "$start-$prev"; $start = $n; } $prev = $n; } $result[] = $start == $prev ? $prev : $start . '-' . $prev; echo implode(', ', $result);
Output for git.master_jit, git.master, rfc.property-hooks
1-7, 11, 21-24

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