如何使用带有 listData() 的 dropDownList 从 yii 中的整数 1、2、3 中进行选择。我按照以下方式进行操作,但它不起作用。
public static function getaccessLevel()
{
$models[] = array(1 => '1', 2=> '2', 3=> '3');
return CHtml::listData($models, '1', '2', '3');
}
echo $form->dropDownList($user,'timezone', $user->getaccessLevel());