I have an array like this:
Array
(
[0] => [email protected]
[1] => [email protected]
)
Array
(
[0] => [email protected]
[1] => [email protected]
)
I would like to combine array above like this:
Array
(
[0] => [email protected]
[1] => [email protected]
[2] => [email protected]
[3] => [email protected]
)
How the way to combine it?