array_merge是我们在PHP开发中用来合并数组使用最多的函数,下面就来深入解析array_merge的用法:
1:如果数组中有相同的字符串键名,则该键名后面的值覆盖前面的值,如果想让前面的值覆盖后面,则可以使用 + 号
$a=array(
'a'=>'first a',
'b'=>'b'
);
$b=array(
'c'=>'c',
'a'=>'second a'
);
$result=array_merge($a,$b);
var_dump($result);
$result=$a+$b;
var_dump($result);
使用 array_merge 保留了 second a 输出如下
Array
(
[a] => second a
[b] => b
[c] => c
)
使用 + 号 则保留了 first_a 输出如下
Array
(
[a] => first a
[b] => b
[c] => c
)
2:如果数组中有相同的数字键名、则格式化键名并保留全部的值
$a=array(
0=>'zero_a',
2=>'two_a',
3=>'three_a'
);
$b=array(
1=>'one_b',
3=>'three_b',
4=>'four_b'
);
$result=array_merge($a,$b);
var_dump($result);
输出如下
Array
(
[0] => zero_a
[1] => two_a
[2] => three_a
[3] => one_b
[4] => three_b
[5] => four_b
)
3:如果只传入一个数组,并且键名是数字,则格式化键名
$a=array(
1=>1,
3=>3,
6=>6
);
$result=array_merge($a);
var_dump($result);
输出如下
Array
(
[0] => 1
[1] => 3
[2] => 6
)
4:如果传的参数中有一个不是数组,则返回 null,此处需要注意,在开发过程中,我们可能需要把两次查询的数据合并成一个数组,如果有一个查询为空,那么使用 array_merge 函数合并的结果就是 null,我曾多次被 null 所坑而写此篇博客重要的原因也是因为此,第四点是个坑需注意!
$a=array(
1=>1,
6=>6
);
$b='';
$result=array_merge($a,$b);
var_dump($result);
输出如下
null
因此,在不确定需要 array_merge 的数组是否有空值的时候,直接使用 (array) 强制转数组,上面的代码就可以改成如下形式
$result=array_merge((array)$a,(array)$b);
发表评论
沙发空缺中,还不快抢~