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
配置文件修改length后会导致math验证图片显示不完整
$this->length = 5;
protected function generate(): array { $bag = ''; if ($this->math) { $this->length = 5;
public function create(string $config = null, bool $api = false): Response { $this->configure($config); if($this->math){ $this->length = 5; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
问题出在: generate() 方法下的
$this->length = 5;
对 create() 方法无效我是这样解决的:在 create() 方法下增加一个$this->length = 5;
The text was updated successfully, but these errors were encountered: