标签:color strong php 相同 键值 str col print 注释
$arr_a=[1=>1,2=>2,3=>3];
$arr_b=[1=>‘a‘,4=>4];
print_r($arr_a+$arr_b);
返回结果:
Array ( [1] => 1 [2] => 2 [3] => 3 [4] => 4 )
注释:两个数组相加,若数组中存在相同键值的元素,则只保留第一个数组的元素
标签:color strong php 相同 键值 str col print 注释
原文地址:https://www.cnblogs.com/goufugui/p/9293329.html