An issue you need to pay attention to when using the php array_merge function_PHP Tutorial

WBOY
Release: 2016-07-13 09:59:04
Original
925 people have browsed it

An issue you need to pay attention to when using the php array_merge function

This article mainly introduces an issue you need to pay attention to when using the php array_merge function. This article explains that array_merge will not merge numbers when merging arrays. Everyone needs to pay attention to the problem of key names when using it. Friends in need can refer to it

When using the array_merge function in PHP language, it is thought that the same key name will be overwritten, but please see the following code:

The code is as follows:


$a1 = array(1=>'abc', 3=>10);
$a2 = array(1=>'efg', 3=>20);
print_r(array_merge($a1, $a2));

What will be output? What we expected was:

The code is as follows:


Array
(
[1] => efg
[3] => 20
)

The actual output is:

The code is as follows:


Array
(
[0] => abc
[1] => 10
[2] => efg
[3] => 20
)

Not only was it not overwritten, but the numeric keys were re-indexed consecutively.

At first I thought this was a bug, then I read the php manual http://php.net/manual/zh/function.array-merge.php

「If the input array has the same string key name, the value after the key name will overwrite the previous value. However, if the array contains a numeric key name, the subsequent value will not overwrite the original value. Instead, append it to
. If only an array is given and the array is numerically indexed, the key names are re-indexed consecutively. 》

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/976534.htmlTechArticleA problem you need to pay attention to when using the php array_merge function. This article mainly introduces an issue you need to pay attention to when using the php array_merge function. , this article explains that array_merge will not merge when merging arrays...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!