Home PHP Libraries Verification code library thinkphp5 verification code library

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)){
 //验证失败
};
Disclaimer

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

Use GD library to do verification code in php, phpgd library verification code_PHP tutorial Use GD library to do verification code in php, phpgd library verification code_PHP tutorial

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

Zend Framework generates verification codes and implements verification code verification functions (with demo source code download), zenddemo_PHP tutorial Zend Framework generates verification codes and implements verification code verification functions (with demo source code download), zenddemo_PHP tutorial

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.

Simple verification code generation, simple verification code generation_PHP tutorial Simple verification code generation, simple verification code generation_PHP tutorial

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)

Simple and safe PHP verification code with calling method, PHP verification code with calling_PHP tutorial Simple and safe PHP verification code with calling method, PHP verification code with calling_PHP tutorial

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

PHP implementation is suitable for custom verification code classes, php verification code PHP implementation is suitable for custom verification code classes, php verification code

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

A practical php verification code function, php verification code_PHP tutorial A practical php verification code function, php verification code_PHP tutorial

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

See all articles