如何使单选按钮检查在cakephp与动态值


How to make Radio button check in cakephp with dynacmic value

echo $this->Form->input('Client.brainstorm_question.', 
    array('selected' =>$selected,
        'hiddenField'=>false,
        'div' => false,
        'legend'=>false,
        'type'=>'radio',
        'options'=>$bquetion,
        'label'=>false,
        'class'=>'ml0 form-control'));
echo $this->Form->input('Client.brainstorm_question.', 
     array('value' =>'B',
        'hiddenField'=>false,
        'div' => false,
        'legend'=>false,
        'type'=>'radio',
        'options'=>array('1'=>'A','2'=>'B'),
        'label'=>false,
        'class'=>'ml0 form-control'));