Detailed usage of array_merge function in php (with examples)
This article brings you the detailed usage of the array_merge function in PHP (with examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
array_merge This function is very practical and commonly used, but it has some features that can cause trouble if you don't pay attention. This problem occurred when I was modifying my colleague's code a few days ago, so I looked up some information and wrote it down.
Definition and syntax
array array_merge (array $array1 [, array $...])Merge one or more arrays.
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 numeric keys, the subsequent values will not overwrite the original values but will be appended to them.
The syntax is simple, and the return value is the merged array (not always the return value you expect).
Example
<?php // 索引数组 $arr1 = array(0 => 'apple', 1 => 'banana'); $arr2 = array(1 => 'pear', 2 => 'orange'); $arr3 = array('pitaya' => '火龙果'); print_r(array_merge($arr1, $arr2));// array_merge会重建索引 Array ( [0] => apple [1] => banana [2] => pear [3] => orange ) echo '<br />'; print_r(array_merge($arr1, $arr2, $arr3));// 索引数组和关联数组合并 Array ( [0] => apple [1] => banana [2] => pear [3] => orange [pitaya] => 火龙果 ) echo '<br />'; // 索引数组不会覆盖,但是使用 + 的话,前面的值会覆盖后面相同索引的值 print_r($arr1 + $arr2);// Array ( [0] => apple [1] => banana [2] => orange ) echo '<br />'; // 关联数组 $arr1 = array('apple' => '苹果', 'banana' => '香蕉'); $arr2 = array('apple' => '黄元帅苹果', 'orange' => '橙子'); print_r(array_merge($arr1, $arr2));// Array ( [apple] => 黄元帅苹果 [banana] => 香蕉 [orange] => 橙子 ) echo '<br />'; // 后面的值会覆盖前面相同key的值,而使用 + 则正好相反,前面的值会覆盖后面的值 print_r($arr1 + $arr2);// Array ( [apple] => 苹果 [banana] => 香蕉 [orange] => 橙子 )
Filling the pit
So what is the so-called pitfall of array_merge?
In actual use, the framework is used to query data from the database, and what is returned is a two-dimensional array or one-dimensional array. But if the data cannot be queried, null will be returned. If array_merge is used at this time, an error will occur. The following
<?php $arr1 = array('apple', 'pear'); $arr2 = null; $arr3 = array_merge($arr1, $arr2); var_dump($arr3); // Warning: array_merge(): Argument #2 is not an array in D:\WWW\test.php on line 6 // NULL
will generate a Warning, and the return value of array_merge will be null.
The processing method is not difficult, just convert the parameters into an array, and you can encapsulate the function for processing. What should be noted is how to handle the parameter false. As follows
<?php /** * 完善 array_merge * 将所有参数转换为数组,null、false 转换为空数组 * @param array ...$args * @return array */ function array_merge_perfect(...$args) { $fun = function ($value) { if ($value === false) { return array(); } return (array)$value; }; // 将所有参数都转换为 array 类型 $arr = array_map($fun, $args); $newArray = array(); foreach ($arr as $key => $value) { $newArray = array_merge($newArray, $value); } return $newArray; } $arr1 = array('test' => array('apple', 'pear'), 'test1' => array('apple', 'pear')); $arr2 = false; $arr3 = null; print_r((array)$arr2);// Array ( [0] => ) echo '<br />'; print_r((array)$arr3);// Array ( ) echo '<br />'; print_r(array_merge_perfect($arr1, $arr2));// Array ( [test] => Array ( [0] => apple [1] => pear ) [test1] => Array ( [0] => apple [1] => pear ) ) echo '<br />'; print_r(array_merge_perfect($arr1, $arr3));// Array ( [test] => Array ( [0] => apple [1] => pear ) [test1] => Array ( [0] => apple [1] => pear ) ) echo '<br />'; print_r(array_merge_perfect($arr2, $arr3));// Array ( ) echo '<br />';
The above is the detailed content of Detailed usage of array_merge function in php (with examples). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
