PHP实现字母数字混合验证码功能
发布:smiling 来源: PHP粉丝网 添加日期:2021-12-04 17:07:35 浏览: 评论:0
PHP实现字母数字混合验证码,支持自定义验证码、验证码图片、宽度、高度、个数、背景图片,本文给大家分享实例代码,感兴趣的朋友跟随小编一起看看吧
一款简单的PHP实现字母数字混合验证码,支持自定义验证码、验证码图片、宽度、高度、个数、背景图片等
验证码调用地址:Application\Home\Controller\CodeController.class.php
- Vendor('Vcode.Vcode', '', '.class.php');
- $config = array("width" => 100, "height" => 36, "count" => 4, "str" => 2); //配置
- $vcode = new \Vcode($config);
- $vcode->getCode(); //获取验证码
- $vcode->getImg(); //输出图片
- exit;
验证码图片
<img src="__APP__/code/" id="code" onclick="changeCode($('#code'))"/>
JS通过后缀加随机数Math.random()来刷新验证码
- function changeCode(obj) {
- obj.attr("src", '__APP__/code/?' + Math.random());
- }
检测验证码是否输入正确
- <input type="text" id="input_code" class="input"/>
- <input type="button" value="提交" class="btn" onclick="checkCode()"/>
- function checkCode() {
- $.post("__APP__/Code/check", {code: $("#input_code").val()}, function(data) {
- if (data == '1') {
- alert("验证码正确!");
- } else {
- alert("验证码错误!");
- }
- }, "json")
- }
PHP验证传过来的参数code和当前session存储的验证码进行比较,若是正确返回1,错误则-1
- public function check() {
- $code = I('post.code');
- if (strtolower($code) == $_SESSION["sucaihuo_code"]) {
- echo "1";
- } else {
- echo "-1";
- }
- }
Tags: PHP字母数字混合验证码
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)