refactor: 验证码去除大小写区别

This commit is contained in:
2025-03-25 10:36:23 +08:00
parent 6542dec4b0
commit aaa9ff3ed9

View File

@@ -7,7 +7,7 @@ return [
//验证码位数 //验证码位数
'length' => 5, 'length' => 5,
// 验证码字符集合 // 验证码字符集合
'codeSet' => '2345678abcdefhijkmnpqrstuvwxyzABCDEFGHJKLMNPQRTUVWXY', 'codeSet' => '0123456789abcdefghijklmnopqrstuvwxyz',
// 验证码过期时间 // 验证码过期时间
'expire' => 300, 'expire' => 300,
// 是否使用中文验证码 // 是否使用中文验证码