如果文件字段不为空,我正在尝试验证字段。因此,如果有人试图上传文件,我需要验证另一个字段以确保他们选择了他们正在上传的内容,但是我不知道如何查看或仅在字段不为空时运行规则。
public function rules()
{
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
array('full_name, gender_id','required'),
array('video', 'file', 'types'=>'mp4', 'allowEmpty' => true),
array('audio', 'file', 'types'=>'mp3', 'allowEmpty' => true),
array('video','validateVideoType'),
);
}
public function validateVideoType() {
print_r($this->video);
Yii::app()->end();
}
所以this->video
无论我是否上传了东西,它总是空的。如何检查是否设置了该变量?