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_recursive
o algo similar ...
Respuestas:
Puedes usar la
array_combine
función, así:$numbers = array('first', 'second', 'third'); $result = array_combine($numbers, $numbers);
fuente
Este enfoque simple debería funcionar:
$new_array = array(); foreach($numbers as $n){ $new_array[$n] = $n; }
También puedes hacer algo como:
array_combine(array_values($numbers), array_values($numbers))
fuente
Esto debería hacerlo.
function toAssoc($array) { $new_array = array(); foreach($array as $value) { $new_array[$value] = $value; } return $new_array; }
fuente