合并多维数组以连续键[关闭]

i want to merge this two arrays together

Array
(
    [0] => Array
        (
            [type] => Person
            [relevance] => 0.700000
            [count] => 300
            [text] => Chris
        )
)
Array
(
    [0] => Array
        (
            [type] => Person
            [relevance] => 0.900000
            [count] => 400
            [text] => Chris
        )

    [1] => Array
        (
            [type] => Person
            [relevance] => 0.500000
            [count] => 200
            [text] => Tom
        )
)

so i might have a result like this

Array
(
    [0] => Array
        (
            [type] => Person
            [relevance] => 0.900000
            [count] => 400
            [text] => Chris
        )

    [1] => Array
        (
            [type] => Person
            [relevance] => 0.500000
            [count] => 200
            [text] => Tom
        )
    [2] => Array
        (
            [type] => Person
            [relevance] => 0.700000
            [count] => 300
            [text] => taye
        )
)

Like this?

$array_final = array_merge($array_1, $array_2);

refer array_merge at official documentation site

Try using foreach

// $array1 is your original array
foreach($array2 as $val) {
     array_push($array2,$val)
}

Use array_merge docs and is faster to check documentation:D

Did you search the PHP Doc ?

what about array_merge_recursive ?