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

How to use Git Alias to increase your productivity (video)
Nov 27, 2022 programming

How to use Git Alias to increase your productivity (video)

Today we are going to talk about Git Alias and how to increase your productivity by adding shorter aliases for commands that we use everyday. ...

8 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 session
Mar 21, 2023 programming

PHP session

Today we are going to learn about session in PHP. Sessions are like cookies but instead of storing the key value pairs on the user’s computer, session stores them on the server. ...

8 Min Read Read More
PHP Static
Mar 22, 2023 programming

PHP Static

Today we are going to talk about Static methods and properties in PHP. You can access the methods and properties of a class without create a new object but for that you need to know about static. ...

5 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 ...