我想在 beforValidate 中取消设置验证规则,但我有通知:
Notice (8): Indirect modification of overloaded property User::$validate has no effect
我的代码:
function beforeValidate($options = array()) {
if (empty($this->data[$this->name]['name']) && empty($this->data[$this->name]['name2'])) {
unset(
$this->validate['name'], $this->validate['name2']
);
}
return true;
}
如何在没有通知的情况下取消设置规则?