I have this kind of an array:
Array
(
[0] => Array
(
[0] => 88868
)
[1] => Array
(
[0] => 88867
)
[2] => Array
(
[0] => 88869
)
[3] => Array
(
[0] => 88870
)
)
I need to convert this to one dimensional array. How can I do that?
For example like this..
Array
(
[0] => 88868
[1] => 88867
[2] => 88869
[3] => 88870
)
Any php built in functionality is available for this array conversion?