この記事では主に ThinkPHP5 の検証コードの実装方法を紹介します。興味のある方は参考にしてください。
1. まず、vendortopthinkthink-captcha フォルダーが存在することを確認します
2. 検証コードを表示する方法は、ここに書きました: applicationadmincontrollerLogin.php
//显示验证码 public function show_captcha(){ $captcha = new \think\captcha\Captcha(); $captcha->imageW=121; $captcha->imageH = 32; //图片高 $captcha->fontSize =14; //字体大小 $captcha->length = 4; //字符数 $captcha->fontttf = '5.ttf'; //字体 $captcha->expire = 30; //有效期 $captcha->useNoise = false; //不添加杂点 return $captcha->entry(); }
3. 次のように、テンプレート ファイル applicationadminviewLoginindex.html で検証コードを参照します。