App下载

demo_func_array_replace_recursive 在线工具

demo_func_array_replace_recursive 在线工具

<?php

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

	$a2=array("a"=>array("yellow"),"b"=>array("black"));
print_r(array_replace_recursive($a1,$a2));

?>
运行结果