PHP code example of hitmanv / laverify

1. Go to this page and download the library: Download hitmanv/laverify library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

hitmanv / laverify example snippets


use Hitmanv\Laverify\VerifyCode;

// 生成验证码
// type -> 不同用途的验证码 
// target -> 验证码对象 手机号码或邮箱等
VerifyCode::gen($type, $target, $ttl=300); 
VerifyCode::verify($type, $target, $code);

// kernel 添加
'vc' => Hitmanv\Laverify\VerifyCodeMiddleware::class,

// 使用
// target_key -> 请求中验证码对象的键
// code_key -> 请求中验证码的键
someroute()->middleware('vc:type,target_key,code_key')