I have this multi-dimensional PHP array (below).
Array
(
    [0] => Array
        (
            [2] => [email protected]
        )
    [1] => Array
        (
            [4] => [email protected]
        )
    [2] => Array
        (
            [3908] => [email protected]
        )
    [3] => Array
        (
            [2548] => [email protected]
        )
    [4] => Array
        (
            [3099] => [email protected]
        )
    [5] => Array
        (
            [5283] => [email protected]
        )
)
I was wondering how could I merge? or combine? or simply do it like this using PHP (below).
Array
(
    [2] => [email protected]
    [4] => [email protected]
    [3908] => [email protected]
    [2548] => [email protected]
    [3099]  => [email protected]
    [5283]  => [email protected]
)
Help