立奇首页 | 会员登录
加入收藏
实例
把两个数组合并为一个数组:
<?php
$a1=array("red","green");
$a2=array("blue","yellow");
print_r(array_merge($a1,$a2));
?>
阅读量: 819