Merge two indexed arrays of indexed arrays based on first column value

You can use the PHP function array_merge_recursive.
See the example:

<?php
$ar1 = array("color" => array("favorite" => "red"), 5);
$ar2 = array(10, "color" => array("favorite" => "green", "blue"));
$result = array_merge_recursive($ar1, $ar2);
print_r($result);
?>

Leave a Comment