私はアイテムを次のような連想配列にプッシュしようとしています:
$new_input['name'] = array(
'type' => 'text',
'label' => 'First name',
'show' => true,
'required' => true
);
array_push($options['inputs'], $new_input);
ただし、キーとしての「名前」の代わりに数字を追加します。それを行う別の方法はありますか?