The difference analysis of PHP merging array + and Array_merge _php skill

Source: Internet
Author: User
The main difference is that if the same key name appears in two or more arrays, the key name is divided into strings or numbers, which requires attention

1 when the key name is a number, the Array_merge () does not overwrite the original value, but the + merge array returns the first occurrence of the value as the final result, while those values that have the same key name in the following array are "discarded" (not overwritten).

2 when the key name is a character, + still returns the first occurrence of the value as the final result, and those values with the same key name in the following array are "discarded", but Array_merge () overrides the value of the same key name as before.

Note that the array key form ' number ' is equivalent to the number
Copy Code code as follows:

$a = Array (' A ', ' B ');
$b = Array (' C ', ' d ');
$c = $a + $b;
Var_dump ($a);
Var_dump (Array_merge ($a, $b));

$a = Array (0 => ' a ', 1 => ' B ');
$b = Array (0 => ' C ', 1 => ' B ');
$c = $a + $b;
Var_dump ($c);
Var_dump (Array_merge ($a, $b));

$a = Array (' A ', ' B ');
$b = Array (' 0 ' => ' C ', 1 => ' B ');
$c = $a + $b;
Var_dump ($c);
Var_dump (Array_merge ($a, $b));

$a = Array (0 => ' a ', 1 => ' B ');
$b = Array (' 0 ' => ' C ', ' 1 ' => ' B ');
$c = $a + $b;
Var_dump ($c);
Var_dump (Array_merge ($a, $b));

Results
Copy Code code as follows:

Array
0 => string ' a ' (length=1)
1 => string ' B ' (length=1)
2 => string ' C ' (length=1)
3 => string ' d ' (length=1)

Array
0 => string ' a ' (length =1)
1 => string ' B ' (length=1)

Array
0 => string ' a ' (length=1)
1 => string ' B ' (le ngth=1)
2 => string ' C ' (length=1)
3 => string ' B ' (length=1)

Array
0 => string ' a ' (length=1)
1 => string ' B ' (length=1)

Array
0 => string ' a ' (length=1)
1 => string ' B ' (length=1
2 => string ' C ' (length=1)
3 => string ' B ' (length=1)

Array
0 => string ' a ' (Leng th=1)
1 => string ' B ' (length=1)

Array
0 => string ' a ' (length=1)
1 => string ' B ' ( length=1)
2 => string ' C ' (length=1)
3 => string ' B ' (length=1)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.