ella123/hyperf-captcha

3.1.11 2024-04-16 16:50 UTC

This package is auto-updated.

Last update: 2024-04-17 01:05:10 UTC


README

composer require ella123/hyperf-captcha

发布配置

php bin/hyperf.php vendor:publish ella123/hyperf-captcha

使用案例

# 创建图片验证码
$data = \Ella123\HyperfCaptcha\captcha_create();
$key = $data['key']; # 验证码标识
$key = $data['img']; # 验证码图片
# 验证图片验证码
# $code: 用户输入的验证码
# $key: 创建验证码的时候返回的key
\Ella123\HyperfCaptcha\captcha_verify($code,$key);

验证码图片