Master PHP’s array_merge: Combine Arrays Efficiently with Real Examples
This tutorial explains PHP’s array_merge function, showing its syntax and how to merge simple, multiple, and associative arrays with clear code examples and output, highlighting key overwriting behavior and practical usage for developers.
PHP provides the powerful array_merge() function to combine one or more arrays into a new array, returning the merged result.
The function’s syntax is straightforward:
array_merge ( array $array1 [, array $... ] ) : arrayIt accepts multiple array arguments and produces a single merged array.
Example 1: Merging two arrays
$array1 = array('apple', 'banana', 'orange');
$array2 = array('kiwi', 'melon', 'grape');
$result = array_merge($array1, $array2);
print_r($result);The output is:
Array
(
[0] => apple
[1] => banana
[2] => orange
[3] => kiwi
[4] => melon
[5] => grape
)This demonstrates that all elements from both arrays are included in the new array.
Example 2: Merging multiple arrays
$array1 = array('apple', 'banana', 'orange');
$array2 = array('kiwi', 'melon', 'grape');
$array3 = array('strawberry', 'pineapple');
$result = array_merge($array1, $array2, $array3);
print_r($result);The resulting array contains elements from all three source arrays:
Array
(
[0] => apple
[1] => banana
[2] => orange
[3] => kiwi
[4] => melon
[5] => grape
[6] => strawberry
[7] => pineapple
)Example 3: Merging associative arrays
$array1 = array('name' => 'John', 'age' => 25);
$array2 = array('name' => 'Jane', 'email' => '[email protected]');
$result = array_merge($array1, $array2);
print_r($result);The output shows that when keys overlap, the later array’s value overwrites the earlier one:
Array
(
[name] => Jane
[age] => 25
[email] => [email protected]
)Conclusion
The array_merge() function is a concise and efficient way to combine both indexed and associative arrays in PHP, making data handling more flexible and convenient.
Signed-in readers can open the original source through BestHub's protected redirect.
This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactand we will review it promptly.
php Courses
php中文网's platform for the latest courses and technical articles, helping PHP learners advance quickly.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.
