Tengo una matriz que parece
$numbers = array('first', 'second', 'third');
Quiero tener una función que tome esta matriz como entrada y devuelva una matriz que se vería así:
array(
'first' => 'first',
'second' => 'second',
'third' => 'third'
)
Me pregunto si es posible usar array_walk_recursiveo algo similar ...