cainiaoer/think-verify

thinkphp captcha api extension

Maintainers

Package info

gitee.com/cainiaoer/think-verify.git

pkg:composer/cainiaoer/think-verify

Statistics

Installs: 13

Dependents: 0

Suggesters: 0

1.1.0 2025-08-28 16:51 UTC

This package is not auto-updated.

Last update: 2026-04-09 20:22:39 UTC


README

thinkphp 验证码类库API版, 基于tp原有验证码类库做了小调整,将依赖从Session调整到Cache,缓存类型默认为文件缓存,如有需要自行调整配置verify.php中的cache缓存类型

安装

composer require cainiaoer/think-verify

使用

// 助手函数,$uid为客户端传过来的验证码唯一标识符
verify($uid)

验证

if(!verify_check($uid,$verify)){
 //验证失败
};