如何在循环中向具有键值对的数组递增(添加更多值)。
$field['choices'] = array(
'custom' => 'My Custom Choice'
);
假设我想从另一个数组中再添加三个选择?
我想要实现的输出:
$field['choices'] = array(
'custom1' => 'My Custom Choice1'
'custom2' => 'My Custom Choice2'
'custom3' => 'My Custom Choice3'
'custom4' => 'My Custom Choice4'
);