There are two arrays:
$arr1 = array
(
[0] => A
[1] => B
[2] => C
[3] => D
)
$arr2 = array
(
[0] => d
[1] => e
[2] => f
)
I want to make a multidimensional array that would look something like this:
$arr3 = array
(
[0] => A => array
(
[0] => d
[1] => e
[2] => f
)
[1] => B
[2] => C
[3] => D
)
I guess first array's value should be the key of the second array.