3v4l.org

run code in 300+ PHP versions simultaneously
<?php $ret[0] = 1; // player position $ret[1] = 'Tiger Woods'; // player name $ret[3] = 68; // score $ret[4] = 2; // start of second record, player #2 position $ret[5] = 'Phil Mickleson'; // player #2 name $ret[6] = 69; // player #2 score $newret = array_combine ( array('position', 'name', 'score'), call_user_func_array( 'array_map', array_merge(array(NULL),array_chunk($ret, 3)) ) ); var_dump($newret);
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { ["position"]=> array(2) { [0]=> int(1) [1]=> int(2) } ["name"]=> array(2) { [0]=> string(11) "Tiger Woods" [1]=> string(14) "Phil Mickleson" } ["score"]=> array(2) { [0]=> int(68) [1]=> int(69) } }

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