Files
YwxAppThink/config/captcha.php
T

52 lines
1.9 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// +----------------------------------------------------------------------
// | YwxApp [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2026-2036 http://ywxapp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: ywxapp<admin@ywxapp.cn>
// +----------------------------------------------------------------------
// config/captcha.php
return [
// 验证码字符集合(默认为数字+大小写字母)
'codeSet' => '23456789abcdefghjkmnpqrstuvwxyzABCDEFGHJKMNPQRSTUVWXYZ',
// 过期时间(秒)
'expire' => 180,
// 是否启用算术验证码(如 3 + 5 = ?)
'math' => true,
// 是否使用中文验证码
'useZh' => false,
'zhSet' => '们以我到他会作时要动国产的一是工就年阶义发成部民可出能方进在了不和有大这主中人上为来分生对于学下级地个用同行面说种过命度革而多子后自社加小机也经力线本电高量长党得实家定深法表着水理化争现所二起政三好十战无农使性前等反体合斗路图把结第里正开论之公事长门及平队形相全表间样与关各重今常安活公同光证',
// 背景图片(需提供路径,相对 public 目录)
'useImgBg' => false,
// 字体大小(px
'fontSize' => 20,
// 是否画混淆曲线
'useCurve' => true,
// 是否添加杂点
'useNoise' => true,
// 图片尺寸(设为 0 自动计算)
'imageH' => 0,
'imageW' => 0,
// 验证码长度
'length' => 4,
// 字体文件(放在 public/static/font/ 下,例如:ttf/arial.ttf
'fontttf' => '',
// 背景色 RGB
'bg' => [243, 251, 254],
// 验证成功后是否自动清除 session 中的验证码
'reset' => true,
];