如何在模型 yii 1.1 中定义 arraylist 的规则?

how to define rules for arraylist in model yii 1.1?

我已经在我的模型中将一个变量定义为一个数组,并且我已经将该数组的规则定义为:

public $nameList;
public function rules()
{
 array('nameList','type'=>'array','allowEmpty'=>false),
}

我试过了this.I有问题吗?

试试这个,它会起作用

public function rules()
{
 array('nameList','type','type'=>'array','allowEmpty'=>false)
}