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)) ) ); print_r($newret);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [position] => Array ( [0] => 1 [1] => 2 ) [name] => Array ( [0] => Tiger Woods [1] => Phil Mickleson ) [score] => Array ( [0] => 68 [1] => 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:
38.98 ms | 401 KiB | 8 Q