thinkphp5 验证码怎么用
发布网友
发布时间:2022-04-05 23:41
我来回答
共3个回答
热心网友
时间:2022-04-06 01:10
验证码的类文件在 extend/other/Captcha.php
//控制器中 获取验证码
public function get_captcha()
{
//使用memcheck 设置session
Session::init(['prefix'=> 'wll_','type'=> '','auto_start' => true]);
$captcha = new \other\Captcha(86,48,4);
echo $captcha->showImg();
Session::set('code',$captcha->getCaptcha());
exit;
}
模板 HTML代码:
<img title="点击刷新验证码" src="__WEBSITE__/public/index.php/seller/login/get_captcha" class="code-img" onClick="this.src='__WEBSITE__/public/index.php/seller/login/get_captcha?d='+Math.random();" />
热心网友
时间:2022-04-06 02:28
直接HTML img 标签 <img src="{:captcha_src()}" alt="captcha" onclick="this.src='{:captcha_src()}'">
热心网友
时间:2022-04-06 04:03
建议从TP5基础学习,因为TP5与TP3有很大的不同,本人收集了相关TP3、TP5的实战视频教程,www.axlix.com/shop/你可以去下载下来学习一下,希望能帮到你。