I can't understand how to combine these arrays.
$data = array("a", "b", "c")
$array = array(0 => Array(1 , 2, 3), 1 => Array(4, 5, 6))
I tried different functions such as merge, combine, map..
Result has to be:
array(
'a' => array(1, 4),
'b' => array(2, 5),
'c' => array(3, 6),
)