Suppose I have:
Array
(
[some_title] => Array
(
[0] => blah blah blah
[1] => More blah.
[2] => Stuff and things
)
[diff_random_name] => Array
(
[0] => blooh blah
)
[totally_new_name] => Array
(
[0] => interesting insights
[1] => other.
)
)
How can I knock all these titled arrays into their own separate arrays? So it would be one array of some_title and its values, and one of diff_random_name, etc. The names are generated dynamically each time and the count of each sub-array changes too.