Próbowałem przekazać element do tablicy asocjacyjnej, takiej jak ta:
$new_input['name'] = array(
'type' => 'text',
'label' => 'First name',
'show' => true,
'required' => true
);
array_push($options['inputs'], $new_input);
Jednak zamiast „nazwa” jako klucz dodaje numer. Czy jest na to inny sposób?
1 odpowiedź
$options['inputs']['name'] = $new_input['name'];
:)