Merge two multidimensional arrays and reindex all subarrays

Rajesh Shrestha picture Rajesh Shrestha · Dec 19, 2011 · Viewed 24.1k times · Source

I have two arrays, I want to merge these two arrays into single array. Please view the detail below:

First Array:

Array
(
    [0] => Array
        (
            [a] => 1
            [b] => 2
            [c] => 3
        )

    [1] => Array
        (
            [a] => 3
            [b] => 2
            [c] => 1
        )
)

Second Array:

Array
(
    [0] => Array
        (
            [d] => 4
            [e] => 5
            [f] => 6
        )

    [1] => Array
        (
            [d] => 6
            [e] => 5
            [f] => 4
        )
)

I want this result. Does somebody know how to do this?

Array
(
    [0] => Array
        (
            [0] => 1
            [1] => 2
            [2] => 3
        )

    [1] => Array
        (
            [0] => 3
            [1] => 2
            [2] => 1
        )
    [2] => Array
        (
            [0] => 4
            [1] => 5
            [2] => 6
        )

    [3] => Array
        (
            [0] => 6
            [1] => 5
            [2] => 4
        )
)

Hope you have understand the question. Thank you in advance.

Answer

Nakkeeran picture Nakkeeran · Dec 19, 2011

Try array_merge:

$result = array_merge($array1, $array2);