ループ内のキーと値のペアを使用して配列をインクリメント (さらに値を追加) するにはどうすればよいですか。
$field['choices'] = array(
'custom' => 'My Custom Choice'
);
別の配列からさらに 3 つの選択肢を追加したいとしましょう。
達成したい出力:
$field['choices'] = array(
'custom1' => 'My Custom Choice1'
'custom2' => 'My Custom Choice2'
'custom3' => 'My Custom Choice3'
'custom4' => 'My Custom Choice4'
);