He intentado enviar un elemento a una matriz asociativa como esta:
$new_input['name'] = array(
'type' => 'text',
'label' => 'First name',
'show' => true,
'required' => true
);
array_push($options['inputs'], $new_input);
Sin embargo, en lugar de 'nombre' como clave, agrega un número. ¿Existe otra forma de hacerlo?