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 isset and empty
Mar 21, 2023 programming

PHP isset and empty

Today we are going to learn about isset and empty in PHP. isset and empty are two functions that help us check the existence of a value. They are way more useful than you think. ...

5 Min Read Read More
PHP Array Flip
Feb 14, 2023 programming

PHP Array Flip

Today we are going to talk about array flip function in PHP. Array flip is very simple yet useful array function that helps you flip and array. ...

4 Min Read Read More
Top Open Source Licenses: Understanding Your Options
May 07, 2024 programming

Top Open Source Licenses: Understanding Your Options

Open source licenses dictate how software can be used, modified, and distributed. Understanding the different types of licenses is essential for developer. ...

9 Min Read Read More
How to Split an Excel File into Multiple Files Using Python
May 08, 2024 programming

How to Split an Excel File into Multiple Files Using Python

Sometimes you might have an excel files that you need to split. splitting the file into multiple files with Python can be easily done. ...

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