I have an array that looks like this. Imagine there are 10 other keys like "Divertissement" in the principal array (this is only one branch of the principal array).
array (size=8)
'Divertissement' =>
array (size=3)
'Cosmic Top' =>
array (size=3)
'Cat' => string '7' (length=1)
'Prix' => string '2.99' (length=4)
'Desc' => string 'SOME TEXT'
'Episodes' =>
array (size=3)
'Cat' => string '7' (length=1)
'Prix' => string '3.99' (length=4)
'Desc' => string 'SOME TEXT"
'Rocket Deal' =>
array (size=3)
'Cat' => string '7' (length=1)
'Prix' => string '0.99' (length=4)
'Desc' => string SOME TEXT"
I am trying with no succes to create a new array that removes the first level array for each branch. So it would just remove "Divertissement", and start directty at Cosmic Top, Episodes, Rocket Deal as first level arrays.