3v4l.org

run code in 300+ PHP versions simultaneously
<?php $MAP = [ ['x', 'x', 'x', 'x'], ['x', 's', 'p', 'x'], ['x', 'p', 'p', 'x'], ['x', 'p', 'p', 'x'], ['x', 'p', 'p', 'x'], ['x', 'p', 'p', 'x'], ['x', 'x', 'x', 'x'], ]; $iterator = new RecursiveIteratorIterator(new RecursiveArrayIterator($MAP)); foreach($iterator as $key => $value) { var_dump($key.' => '.$value); }
Output for git.master, git.master_jit, rfc.property-hooks
string(6) "0 => x" string(6) "1 => x" string(6) "2 => x" string(6) "3 => x" string(6) "0 => x" string(6) "1 => s" string(6) "2 => p" string(6) "3 => x" string(6) "0 => x" string(6) "1 => p" string(6) "2 => p" string(6) "3 => x" string(6) "0 => x" string(6) "1 => p" string(6) "2 => p" string(6) "3 => x" string(6) "0 => x" string(6) "1 => p" string(6) "2 => p" string(6) "3 => x" string(6) "0 => x" string(6) "1 => p" string(6) "2 => p" string(6) "3 => x" string(6) "0 => x" string(6) "1 => x" string(6) "2 => x" string(6) "3 => x"

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:
178.3 ms | 407 KiB | 5 Q