複数の選択オプションを持つフォーム入力があります。私はデフォルト値を設定できません。これは私のコードですCakePHP2 - 入力のデフォルト値 - オプション倍数で選択
<?= $this->Form->input('PaymentMethods', array(
'type' => 'select',
'multiple' => true,
'label' => false,
'options' => array(
'cash'=>'cash',
'invoice'=>'invoice',
'ax'=>'ax',
'ca'=>'ca',
'vi'=>'vi',
'tp'=>'tp',
'dc'=>'dc'
),
'default'=>'ax'
)); ?>
この入力のデフォルト値はどのようにしてPHPでのみ設定できますか?