简单教程
提交运行
代码编辑器:
<?php $a1 = array("a"=>"red","b"=>"green"); $a2 = array("c"=>"blue","b"=>"yellow"); print_r(array_merge($a1,$a2));
运行结果: