i am having a list of array in array which i want to convert to a single Array.
Here is my array:-
Array
(
[0] => Array
(
[0] =>
)
[1] => Array
(
[0] => 13
[1] => 9
)
[2] => Array
(
[0] => 13
[1] => 15
)
)
How can i get this to a single array. I have checked array_column
but i don't have any key name so don't know how to use this.
Answer should be something like:
Array
(
[0] => 13
[1] => 9
[2] => 13
[3] => 15
)
Any help will be highly appreciated.