假设我有一个包含 a、b 和 c 字段的表单。我将使用自定义验证来验证 c。在里面,我需要检查 a & b 是否都已经有效。这意味着,只有当 a 和 b 有效时,我才需要验证 c。
以下是我的代码示例。
public function rules() {
return array(
array('a', 'required'),
array('b', 'numerical', 'min' => 18, 'max' => 99),
array('c', 'mycustomvalidation')
);
}
public function mycustomvalidation($attribute, $params) {
if($this->validate(array('a', 'b'))) { // DO THE VALIDATION IF a & b ARE VALID ONLY
$error = '';
if($this->attributes[$attribute] > 1000)
$error = $this->getAttributeLabel($attribute) . " must be lower than 1000.";
if (!empty($error))
$this->addError($attribute, $error);
}
}
请帮助我找到解决方案。谢谢!