基于 PHP 的 jQuery 中文点击验证码插件 clicaptcha
- 授权协议: 未知
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: https://gitee.com/hooray/clicaptcha
- 软件文档: https://gitee.com/hooray/clicaptcha
软件介绍
clicaptcha
这是一个基于PHP的jQuery中文点击验证码插件
效果图
调用方式
$('#clicaptcha-submit-info').clickCaptcha({
src: '../clicaptcha.php',
success_tip: '验证成功!',
error_tip: '未点中正确区域,请重试!',
callback: function(){
//...
}
});//后端进行二次验证
require('../clicaptcha.class.php');
$clicaptcha = new clicaptcha();
echo $clicaptcha->check($_POST['clicaptcha-submit-info']) ? '后端二次验证成功' : '后端二次验证失败';
Text Processing in Python
David Mertz / Addison-Wesley Professional / 2003-6-12 / USD 54.99
Text Processing in Python describes techniques for manipulation of text using the Python programming language. At the broadest level, text processing is simply taking textual information and doing som......一起来看看 《Text Processing in Python》 这本书的介绍吧!
