search
HomeBackend DevelopmentPHP ProblemHow to merge arrays in PHP array operation? Summary of common methods

In the previous article "PHP Array Operations Matching Search Elements and Key Names in Arrays" we introduced in detail the relevant knowledge of search matching for array operations in PHP. In this article we will continue Let’s take a look at some common operations of array merging in PHP. I hope everyone has to help!

How to merge arrays in PHP array operation? Summary of common methods

In the previous article we introduced the in_array function, array_search function and for array operations in PHP The array_key_exists function can be used to search and match elements in an array. Next, we can continue to look at some commonly used function operations related to arrays in PHP development work.

Let's introduce how to complete the merging of arrays in PHP. To achieve such an operation, we need to use the array_merge function and the array_merge_recursive function. Below we will introduce these two functions separately.

array_merge() function - overwrites the previous array elements with the same key name

In PHP we can passarray_merge() function is used to merge arrays, that is, to merge elements in multiple arrays into one array. The basic syntax format of the array_merge function is as follows:

array_merge(array1,array2,array3...)

What needs to be noted is: The parameter array123 is the array used for merging. This function can merge multiple arrays. If two elements or multiple elements have the same key name, after merging, the last element with their key name will overwrite the other elements.

This function can also merge an array. Yes, how do you say merging an array? What I mean at this time is that if the function inputs only one array, and the key name of this array is an integer, When "merged" by this function, the key names of the new array output are re-indexed starting from 0.

Next, let’s take a brief look at the use of the array_merge function through an example. The example is as follows:

<?php
$a1=array("a"=>"red","b"=>"green");
$a2=array("c"=>"blue","b"=>"yellow");
print_r(array_merge($a1,$a2));
?>

Output result:

How to merge arrays in PHP array operation? Summary of common methods

In the above example, both arrays to be merged have elements with the key name "b". You can see the last element with the key name "b" in the final output result. "yellow" overwrites the previous elements, so there are only three elements in the final output.

Let’s take a look at the operation of “merging” an array. The example is as follows:

<?php
$a=array(3=>"red",4=>"green");
print_r(array_merge($a));
?>

Output result:

How to merge arrays in PHP array operation? Summary of common methods

In the above example, in an array that needs to be "merged", the key names of the array are all integers and are not indexed from 0. After merging through the array_merge function, the key names of the array change and are indexed from 0.

<strong><span style="font-size: 20px;">array_merge_recursive</span></strong>##Function - will not overwrite array elements with the same key name

In PHP, not only the array_merge function can merge arrays, but you need to know that the

array_merge_recursive function can also merge one or more arrays into one array. There is not much difference between the two. The difference you know is:

When two arrays that need to be merged have elements with the same key name, the two functions handle them differently. As mentioned in the example above,

array_mergeAfter the function is merged, the element whose key name is the last will overwrite other elements; however, the array_merge_recursive function can recurse elements with the same key name into an array without overwriting them.

Let’s take a look at the example above. The example is as follows:

<?php
$a1=array("a"=>"red","b"=>"green");
$a2=array("c"=>"blue","b"=>"yellow");
print_r(array_merge($a1,$a2));
echo  &#39;<br/>&#39;;
print_r(array_merge_recursive($a1,$a2));
?>

Output result:


How to merge arrays in PHP array operation? Summary of common methods

Through the above example You can see the difference between the two functions: It should be noted that the same two sets of arrays are merged through different functions, and the output results are different. Merged through the

array_merge function, the same element key name will be overwritten. The key names of elements merged through the array_merge_recursive function will not be overwritten.

Also, if you "merge" an array through the array_merge_recursive function, the result will be re-indexed from

0 just like the array_merge function.

The example is as follows:

<?php
$a=array(3=>"red",4=>"green");
print_r(array_merge_recursive($a));
?>

Output result:


How to merge arrays in PHP array operation? Summary of common methods##It can be seen from the above example

array_merge_recursive## The main difference between #function and

array_merge function is whether elements with the same key name will be overwritten.

<strong><span style="font-size: 20px;">+</span></strong>合并数组-覆盖后面相同键名的数组元素

通过+来进行数组的合并可以说是最简单的一种数组合并方法了,让我们直接通过示例来看一下用法,示例如下:

<?php
$a1=array("a"=>"red","b"=>"green");
$a2=array("c"=>"blue","b"=>"yellow");
$a3=$a1+$a2;
print_r($a3);
?>

输出结果:

How to merge arrays in PHP array operation? Summary of common methods

由上述示例能够看出,通过+的方式来合并数组,和通过array_merge函数的方式来合并数组的区别就在于:

  • array_merge函数遇到相同键名的不同数组元素,合并之后会被覆盖掉,被覆盖的是前面的数组元素;

  • +遇到相同键名的不同数组元素进行合并,合并之后也会被覆盖掉,但是覆盖的元素是后面的数组元素。

<strong><span style="font-size: 20px;">array_combine</span></strong>函数-一组做键名一组做键值

在PHP中还有一个函数是array_combine函数,它能够将两个数组进行合并,并且其中一个数组的元素是合并后新数组的键名,另一个数组中的元素是合并后新数组的键值。

array_combine函数的基本语法格式如下:

array_combine(keys,values);

其中需要注意的是,参数keys表示的就是作为键名的数组,参数value表示的就是作为键值的数组,这两个数组中的元素个数一定要相同,也就是两个数组合并之后需要每个键名都有相对应的键值。

通过array_combine函数合并成功的话,返回的结果是合并成功后的数组,如果两个数组中的元素个数不相同那么返回的结果就是flase。

下面我们通过示例来看一下array_combine函数的应用,示例如下:

<?php
$a1=array("a"=>"red","b"=>"green");
$a2=array("c"=>"blue","b"=>"yellow");
$a3 = array_combine($a1, $a2);
print_r($a3);
?>

输出结果:

How to merge arrays in PHP array operation? Summary of common methods

由此我们便通过array_combine函数完成了两个数组的合并,并且其中一个数组作为键名,另一个数组作为键值。

大家如果感兴趣的话,可以点击《PHP视频教程》进行更多关于PHP知识的学习。

The above is the detailed content of How to merge arrays in PHP array operation? Summary of common methods. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.