I'm having an array like this,
Array
(
[0] => Array
(
[0] => m_res1
[1] => m_res2
)
[1] => Array
(
[0] => images
[1] => pcgc_desc
[2] => The_US_GRANT_A_Luxury_Collection_Hotel_usn_2
)
[2] => Array
(
[0] => Australis
)
[3] => Array
(
[0] => Greece
[1] => download
)
[4] => Array
(
[0] => Studio
)
)
I would like to get like this..
Array
(
[0] => m_res1
[1] => m_res2
[2] => images
[3] => pcgc_desc
[4] => The_US_GRANT_A_Luxury_Collection_Hotel_usn_2
[5] => Australis
[6] => Greece
[7] => download
[8] => Studio
)
i.e:, merge the nested array values and make it as an one array..
Is this possible?