transn/think-tcaptcha

tencent captcha package for thinkphp5

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/transn/think-tcaptcha

1.1 2024-02-20 02:45 UTC

This package is not auto-updated.

Last update: 2025-12-23 11:59:38 UTC


README

thinkphp5 腾讯验证码类库

安装

composer require tj646/think-tcaptcha

##使用

###在配置扩展目录添加配置文件tcaptcha_config.php填写你的配置参数

<?php 
 return [
	'secret_id' => '***',
	'secret_key' => '***'
];

###模板里输出验证码

<div>{:tcaptcha('register',320,40,0)}</div>

手动验证

if(!tcaptcha_check($ticket)){
 //验证失败
};