We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$this->only = $this->append = $this->remove = []; if (empty($scene)) { return; }
现在不能使用remove方法了吗? $validate->remove('email')->check($data); 更新到v5.1.39 LTS 后 发现这个版本把 $this->only = $this->append = $this->remove = []; 这句上移了 导致remove的被置空了
$validate->remove('email')->check($data);
$this->only = $this->append = $this->remove = [];
The text was updated successfully, but these errors were encountered:
同样遇到这个问题。 把这个下移好了。 不知道为什么改这个。之前5.1.36版本是在下面的
Sorry, something went wrong.
No branches or pull requests
现在不能使用remove方法了吗?
$validate->remove('email')->check($data);
更新到v5.1.39 LTS 后 发现这个版本把
$this->only = $this->append = $this->remove = [];
这句上移了 导致remove的被置空了
The text was updated successfully, but these errors were encountered: