I have the following array:
Array
(
[type] => Array
(
[1] => default
[2] => customer
)
[direction] => Array
(
[1] => forward
[2] => backward
)
How could I convert it into:
Array
(
[1] => Array
(
[type] => default
[direction] => forward
)
[2] => Array
(
[type] => customer
[direction] => backward
)