I have an array in the following form,
Array
(
[foo] => Array
(
[3] => hello
[1] => world
)
[bar] => Array
(
[3] => Some other stuff
[1] => Some more stuff
)
[baz] => Array
(
[3] => value
)
)
How could I have it on the following form:
Array
(
[3] => Array
(
[foo] => hello
[bar] => Some other stuff
[baz] => value
)
[1] => Array
(
[foo] => world
[bar] => Some more stuff
)
)
Thanks
[bar][1] => Some more stuff?[bar][1]is really not making sense here. In fact, none of these keys are making sense. Please clarify.