first236108 / slide-capcha
一个免费的幻灯片图片验证码库。
v1.4
2020-07-14 06:58 UTC
Requires
- php: >=7.0
- ext-gd: *
This package is not auto-updated.
Last update: 2024-10-02 03:46:54 UTC
README
描述
slide capcha,它是免费的,正如原始作者(weiyingbin)所说,许多验证码需要付费。所以,试试这个。这个库是tncode的升级,感谢weiyingbin,希望没有侵权。
安装方法
composer require first236108/slide-capcha
文档
有关详细信息,请参考示例。只需注意,首先,API返回的数据必须包括状态字段;其次,图片格式为png;最后,表单处理ID,如下所示
<form id="form1">
<input type="text" name="">
<!--……-->
<button type="button" class="tncode"></button>
</form>
<script >
tncode.init({
imageUrl: '/make.php',
submit: '/login.php',
form: 'form1', //form handle
method: 'post',
success: 'ok', //status
onsuccess: function (res) {
console.log(res);
debugger;
location.href = res.url;
}
});
</script>