Eu tenho uma matriz que parece
$numbers = array('first', 'second', 'third');
Quero ter uma função que receba essa matriz como entrada e retorne uma matriz semelhante a:
array(
'first' => 'first',
'second' => 'second',
'third' => 'third'
)
Gostaria de saber se é possível usar array_walk_recursive
ou algo semelhante ...