Q:

array_merge_recursive


<?php

$a1=array("a"=>"red","b"=>"green");

$a2=array("c"=>"blue","b"=>"yellow");

print_r(array_merge_recursive($a1,$a2));

?>
 
1

New to Communities?

Join the community