3v4l.org

run code in 300+ PHP versions simultaneously
<?php $nu_array = null; $callback = function ( $item ) use(&$callback, &$nu_array) { if (!is_array($item)) { $nu_array[] = $item; } else if ( is_array( $item ) ) { foreach( array_values($item) as $v) { if ( !(is_array($v))) { $nu_array[] = $v; } else { $callback( $v ); continue; } } } }; $array = array('alpha',array(1,2,3),'beta',array(4,5,6),'gamma',array(7,8,array(9,10))); array_walk($array, $callback); var_dump($nu_array);
Output for git.master, git.master_jit, rfc.property-hooks
array(13) { [0]=> string(5) "alpha" [1]=> int(1) [2]=> int(2) [3]=> int(3) [4]=> string(4) "beta" [5]=> int(4) [6]=> int(5) [7]=> int(6) [8]=> string(5) "gamma" [9]=> int(7) [10]=> int(8) [11]=> int(9) [12]=> int(10) }

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