ftkj/ftcaptcha

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/ftkj/ftcaptcha

1.2 2020-12-05 07:31 UTC

This package is not auto-updated.

Last update: 2025-12-23 11:12:10 UTC


README

thinkphp5.1 验证码类库 前后端分利用

安装

composer require ftkj/ftcaptcha

##使用

生成base64 验证码,

$captcha = new FtCaptcha((array) Config::pull('captcha'));
return $captcha->entry();

返回:

{
    "id": "kb7noqgcglk47rnkj9vknoae51",
    "captcha_base64": "iVBO...=="
}

验证

$captcha = new FtCaptcha((array) Config::pull('captcha'));
return $captcha->check($code,$id);

返回:true / false