Free cookie consent management tool by TermsFeed Generator PHP Array Merge | Amir Kamizi
AMIR KAMIZI
Home Blog Courses Books Newsletter Store Membership Buy me a coffee
PHP Array Merge

PHP Array Merge

Last Updated on Feb 14, 2023

Array Merge

This function merges all the arrays that you pass as arguments and returns an array.

How does it merge the arrays?

If the key is number(indexed array) then it will be appended to the previous array.

$array = ['pratham','amir','simon','francesco'];
$arrayB = ['pratham','amir'];

array_merge($array,$arrayB);
//Array (
//  [0] => pratham
//  [1] => amir
//  [2] => simon
//  [3] => francesco
//  [4] => pratham
//  [5] => amir
// )

If the key is string (associative array) then it will update the value

$people = [
   'php'      => 'amir',
   'twitter'  => 'pratham',
   'docker'   => 'francesco',
];
$peopleB = [
   'php'      => 'amir updated',
   'feedhive' => 'simon',
   'twitter'  => 'pratham updated',
];
$mergeAssociative = array_merge($people,$peopleB);
// Array (
//  [php] => amir updated
//  [twitter] => pratham updated
//  [docker] => francesco
//  [feedhive] => simon
// )

Conclusion

Now you know about array merge function in PHP.

I recommend you to open a PHP files and try to define multiple arrays. Then try to merge those arrays with array merge function.

If you have any suggestions, questions, or opinions, please contact me. I’m looking forward to hearing from you!

Key takeaways

  • merging arrays in PHP with array merge function

Category: programming

Tags: #php #array

Join the Newsletter

Subscribe to get my latest content by email.

I won't send you spam. Unsubscribe at any time.

Related Posts

PHP Include and Require
Mar 21, 2023 programming

PHP Include and Require

Today we are going to learn about include and require in PHP. they help you organize your code by keeping your code in different files and use them whenever you need without duplicating your code. ...

6 Min Read Read More
PHP Regular Expressions
Mar 22, 2023 programming

PHP Regular Expressions

Today we are going to learn about regular expressions in PHP. A regular expression is a sequence of characters that specifies a search pattern. it's important to know how to apply them in PHP. ...

5 Min Read Read More
PHP Working with Forms
Mar 21, 2023 programming

PHP Working with Forms

Today we are going to talk about working with forms in PHP. It's very important to know how to work with forms and parameters in the request, whether they are from a Get request or a Post request. ...

9 Min Read Read More
PHP xml and json
Mar 21, 2023 programming

PHP xml and json

Today we are going to talk about working XML and JSON in PHP. XML and JSON are the most common formats that are used in APIs. knowing how to work with them is essential for any web developer. ...

9 Min Read Read More

Recommended Courses

Introduction to Machine Learning in PHP

Introduction to Machine Learning in PHP

Learn to Build Different Machine Learning Models Easily ...

PHP Tutorial Beginner to Advanced

PHP Tutorial Beginner to Advanced

Learn everything you need to start a successful career as a PHP developer ...