|
The + operator appends elements of remaining keys from the right handed array to the left handed, whereas duplicated keys are NOT overwritten.
今天 再次看 php manual的時候,才知道
復制代碼 代碼如下:
<?php
$a = array("a" => "apple", "b" => "banana");
$b = array("a" => "pear", "b" => "strawberry", "c" => "cherry");
$c = $a + $b; // Union of $a and $b
echo "Union of /$a and /$b: /n";
var_dump($c);
$c = $b + $a; // Union of $b and $a
echo "Union of /$b and /$a: /n";
var_dump($c);
?>
When executed, this script will print the following:
Union of $a and $b:
復制代碼 代碼如下:
array(3) {
["a"]=>
string(5) "apple"
["b"]=>
string(6) "banana"
["c"]=>
string(6) "cherry"
}
Union of $b and $a:
array(3) {
["a"]=>
string(4) "pear"
["b"]=>
string(10) "strawberry"
["c"]=>
string(6) "cherry"
}
原來,我的理解就是。直接把$b中的元素直接復制到$a中。
我錯了。
php技術:PHP array 的加法操作代碼,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。