fixed/tp-captcha

兼容tp6以上,前后端分离图片验证码

v1.0 2021-12-10 02:05 UTC

This package is auto-updated.

Last update: 2024-04-10 07:33:33 UTC


README

thinkphp6 验证码类库

安装

composer require fixed/tp-captcha

使用

 $captcha = new Captcha();
  $captcha->create();

验证

 $captcha = new Captcha();
$uniqid = 'cbf196301a389c284552f4379a4a159b';
$code = 'vdmn';
if ($captcha->check($uniqid, $code) === true) {
    echo 1;
} else {
    echo 0;
}