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);