think-captcha
thinkphp5 verification code library
Install
composer require topthink/think-captcha
use
Output the verification code in the template
<div>{:captcha_img()}</div>
or
<div><img src="{:captcha_src()}" alt="captcha" /></div>
上面两种的最终效果是一样的
Verify in the controller
Just use TP5’s built-in verification feature
$this->validate($data,[ 'captcha|验证码'=>'require|captcha' ]);
Or verify manually
if(!captcha_check($captcha)){ //验证失败 };
All resources on this site are contributed by netizens or reprinted by major download sites. Please check the integrity of the software yourself! All resources on this site are for learning reference only. Please do not use them for commercial purposes. Otherwise, you will be responsible for all consequences! If there is any infringement, please contact us to delete it. Contact information: admin@php.cn
Related Article
12 Jul 2016
In php, GD library is used for verification code, and phpgd library is used for verification code. Use GD library to do verification code in php, phpgd library verification code php require_once 'string.func.php';//Use GD library to do verification code/** *Add verification text* @param int $type * @param int $length */function
12 Jul 2016
Zend Framework generates verification codes and implements verification code verification functions (with demo source code download), zenddemo. Zend Framework generates verification codes and implements verification code verification functions (with demo source code download), zenddemo This article describes how Zend Framework generates verification codes and implements verification code verification functions.
12 Jul 2016
Simple verification code generation, simple verification code generation. Simple verification code generation, simple verification code generation for($i= 0;$i 5;$i ){ $rand .= dechex( rand( 1, 15)); // Random number hexadecimal 1-F generation 5} $im = imagecreatetruecolor (100, 30)
12 Jul 2016
Simple and secure PHP verification code with calling method, PHP verification code with calling method. Simple and secure PHP verification code with calling method, PHP verification code with call. 1. Verification code example 2. PHP verification code class, secoder.class.php php /** * Security verification code * * Secure verification
06 Jul 2016
PHP implementation is suitable for custom verification code classes, php verification code. PHP implementation is suitable for custom verification code classes, php verification code. The example of this article shares the PHP verification code class for everyone, and uses objects to implement the verification code class for your reference. The specific content is as follows
12 Jul 2016
A practical php verification code function, php verification code. A practical php verification code function, php verification code This article shares several php verification code functions for everyone, they are very practical, the specific content is as follows Code segment 1: Simple php verification code function
Hot Tools
PHP dynamically randomly generates verification code class
PHP dynamically randomly generates verification code class
Simple and easy-to-use PHP verification code class
Simple and easy-to-use PHP verification code class
A PHP verification code generation code
A PHP verification code generation code