3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = array(); $arr[1] = array('p' => 3, 'id' => 4); $arr[2] = array('p' => 2, 'id' => 3); $arr[3] = array('p' => 1, 'id' => 2); $arr[4] = array('p' => 0, 'id' => 1); $mas = array(); foreach($arr as $ind => $itm) { $mas[$itm['p']][$itm['id']] = 'aaa'.$ind; } print_r($mas);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [3] => Array ( [4] => aaa1 ) [2] => Array ( [3] => aaa2 ) [1] => Array ( [2] => aaa3 ) [0] => Array ( [1] => aaa4 ) )

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