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
vendor\topthink\think-captcha\src\Captcha.php 75行
/** * 配置验证码 * @param string|null $config */ protected function configure(string $config = null): void { if (is_null($config)) { $config = $this->config->get('captcha', []); } else { $config = $this->config->get('captcha.' . $config, []); } foreach ($config as $key => $val) { if (property_exists($this, $key)) { $this->{$key} = $val; } } }
当$config传入空字符串''即($config='')调用无法使用自定义的配置,建议支持空字符串获取默认配置
$config=''
The text was updated successfully, but these errors were encountered:
No branches or pull requests
vendor\topthink\think-captcha\src\Captcha.php 75行
当$config传入空字符串''即(
$config=''
)调用无法使用自定义的配置,建议支持空字符串获取默认配置The text was updated successfully, but these errors were encountered: