四、验证码
https://www.kancloud.cn/manual/thinkphp5_1/354122
tp5框架中默认没有自带验证码功能,需要我们自己去引入安装
# 官方提供的tp官方验证码类
composer require topthink/think-captcha# 模板中引用
<div>{:captcha_img()}</div>
或者
<div><img src="{:captcha_src()}" alt="captcha" /></div># 验证
$this->validate($data,['code'=>'require|captcha'
]);
或者
if(!captcha_check($captcha)){// 验证失败
};
验证器
控制器
验证器去验证
独立去验证验证码
html模板
效果