深入解析array_merge函数的用法 php

array_merge是我们用来合并数组使用最多的函数;
下面就来深入解析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);

白俊遥博客

白俊遥博客
请先登录后发表评论
  • latest comments
  • 总共14条评论
白俊遥博客

慢慢消耗消失的每月每日╯ :如果数组中有相同的数字键名、则格式化键名并保留全部的值;这句话不是太严谨我测试了下只要是数字索引键名,键名称不重复的情况下同样格式化键名并保留全部的值

2017-11-21 10:50:22 回复

白俊遥博客 白俊遥博客

云淡风晴 :第3条说喽;我那句话重点是想强调有相同的数字键名的时候;array_merge 怎么处理的;

2017-11-27 21:57:31 回复

白俊遥博客

花开花卟败、 白俊遥博客好厉害 还有这种操作!

2017-09-11 08:51:55 回复

白俊遥博客

不说话 :henhao

2017-06-06 14:03:55 回复

白俊遥博客

不说话 :88888

2017-06-06 14:04:16 回复

白俊遥博客

█.·〢習慣 :我也遇到了,,加了好多判断,结果一样,看到这个恍然大悟

2017-04-18 10:55:11 回复

白俊遥博客

孤城浪子 :确实是个坑

2016-09-13 15:00:09 回复

白俊遥博客

香蕉你个banana 白俊遥博客

2016-08-24 17:15:12 回复

白俊遥博客

白俊遥博客我原来也遇到过这个坑。。。

2016-08-05 15:16:20 回复

白俊遥博客

NULL 白俊遥博客

2016-03-19 11:43:00 回复

白俊遥博客

流水 白俊遥博客

2016-01-20 08:59:42 回复

白俊遥博客

NULL 白俊遥博客

2016-03-19 11:43:18 回复

白俊遥博客

NULL 白俊遥博客

2016-03-19 11:43:27 回复

白俊遥博客

NULL 白俊遥博客

2016-03-19 11:43:34 回复