PHP array_merge() function with example

it is used to merge two or more arrays

Syntax:

array_merge(array1, array2,...);

Example:

Input:
    $arr1 = array(10, 20, 30, 40, 50);
    $arr2 = array(60, 70, 80, 90, 10);

    Output:
    Array
    (
        [0] => 10
        [1] => 20
        [2] => 30
        [3] => 40
        [4] => 50
        [5] => 60
        [6] => 70
        [7] => 80
        [8] => 90
        [9] => 10
    )

PHP code 1: Merging two indexed arrays

<?php
    $arr1 = array(10, 20, 30, 40, 50);
    $arr2 = array(60, 70, 80, 90, 10);
    
    //merging arrays
    $arr3 = array_merge($arr1, $arr2);
    
    //printing 
    print_r ($arr3);
?>

Output

Array
(
    [0] => 10
    [1] => 20
    [2] => 30
    [3] => 40
    [4] => 50
    [5] => 60
    [6] => 70
    [7] => 80
    [8] => 90
    [9] => 10
)

PHP code 2: Merging two associative arrays having different keys and values

<?php
    $arr1 = array("a" => "Hello", "b" => "Hi");
    $arr2 = array("c" => "Bye!", "d" => "Nothing");
    
    //merging arrays
    $arr3 = array_merge($arr1, $arr2);
    
    //printing 
    print_r ($arr3);
?>

Output

Array
(
    [a] => Hello
    [b] => Hi
    [c] => Bye!
    [d] => Nothing
)

PHP Code 3: Merging two associative arrays having different keys and duplicate value

<?php
    $arr1 = array("a" => "Hello", "b" => "Hi");
    $arr2 = array("c" => "Hello", "d" => "Hi");
    
    //merging arrays
    $arr3 = array_merge($arr1, $arr2);
    
    //printing 
    print_r ($arr3);
?>

Output

Array
(
    [a] => Hello
    [b] => Hi
    [c] => Hello
    [d] => Hi
)

PHP Code 4: Merging two associative arrays having duplicate keys and unique values

<?php
    $arr1 = array("a" => "Hello", "b" => "Hi");
    $arr2 = array("a" => "Okay!", "d" => "Nothing");
    
    //merging arrays
    $arr3 = array_merge($arr1, $arr2);
    
    //printing 
    print_r ($arr3);
?>

Output

Array
(
    [a] => Okay!
    [b] => Hi
    [d] => Nothing
)

PHP Code 5: Merging indexed and associative arrays

<?php
    $arr1 = array(10, 20, 30, 40);
    $arr2 = array("c" => "Hello", "d" => "Hi");
    
    //merging arrays
    $arr3 = array_merge($arr1, $arr2);
    
    //printing 
    print_r ($arr3);
?>

Output

Array
(
    [0] => 10
    [1] => 20
    [2] => 30
    [3] => 40
    [c] => Hello
    [d] => Hi
)

Leave a Comment

error: Alert: Content is protected!!