I am terrible with manipulating arrays...given this structure I want to remove the top level array and merge all subsets into one flat array:
Array
(
[0] => Array
(
[0] => Array
(
[0] => hey.com
)
[1] => Array
(
[0] => you.com
)
)
[1] => Array
(
[0] => Array
(
[0] => this.com
)
[1] => Array
(
[0] => rocks.com
)
)
)
to desired structure:
Array
(
[0] => hey.com
[1] => you.com
[2] => this.com
[3] => rocks.com
)
Speed is essential - we will be dealing with hundreds of thousands of results