3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array1 = Array ( '0' => Array ( 'var_id' => 43 ), '1' => Array ( 'var_id' => 25 ) ); $array2 = Array ( '0' => Array ( 'name' => 'Tortoise' ), '1' => Array ( 'name' => 'Black' ) ); $array3 = Array ( '0' => Array ( 'id' => 1907 ), '1' => Array ( 'id' => 1908 ) ); $final = array(); foreach(array($array1, $array2, $array3) AS $array) { foreach($array AS $key => $value) { foreach($value AS $subkey => $subvalue) { $final[$key][$subkey] = $subvalue; } } } print_r($final);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [var_id] => 43 [name] => Tortoise [id] => 1907 ) [1] => Array ( [var_id] => 25 [name] => Black [id] => 1908 ) )

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