3v4l.org

run code in 300+ PHP versions simultaneously
<?php function position_merge(array $arr1,array $arr2) { $result=array_merge($arr1,$arr2); array_walk($result,function(&$item,$idx){ $item["array_index"]=$idx;// Make sure this key is not used }); usort($result,function($a,$b){ return $a["position"]-$b["position"]?:$a["array_index"]-$b["array_index"]; }); array_walk($result,function(&$item){ unset($item["array_index"]); }); return $result; } $array1 = array( array('name' => 'Bob', 'position' => 1), array('name' => 'Tim', 'position' => 1), array('name' => 'Alf', 'position' => 3), array('name' => 'Jon', 'position' => 3) ); $array2 = array( array('name' => 'Tom', 'position' => 2), array('name' => 'Joe', 'position' => 2), array('name' => 'Jim', 'position' => 2), array('name' => 'Kev', 'position' => 2) ); print_r(position_merge($array1,$array2));
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [name] => Bob [position] => 1 ) [1] => Array ( [name] => Tim [position] => 1 ) [2] => Array ( [name] => Tom [position] => 2 ) [3] => Array ( [name] => Joe [position] => 2 ) [4] => Array ( [name] => Jim [position] => 2 ) [5] => Array ( [name] => Kev [position] => 2 ) [6] => Array ( [name] => Alf [position] => 3 ) [7] => Array ( [name] => Jon [position] => 3 ) )

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:
41.49 ms | 402 KiB | 8 Q