3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = Array ( 0 => 'world', 1 => 'is', 2 => 'a', 3 => 'wonderfull', 5 => 'in', 6 => 'our' ); $new_array = []; $old_key = -1; $i = 0; foreach($arr as $key=>$val){ if(($key-$old_key) ==1){ $new_array[$i][] = $val; $old_key = $key; } if(($key-$old_key) >1){ $i++; $new_array[$i][] = $val; $old_key = $key; } } print_r($new_array);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [0] => world [1] => is [2] => a [3] => wonderfull ) [1] => Array ( [0] => in [1] => our ) )

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.59 ms | 406 KiB | 5 Q