php验证码程序代码
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-22 15:15:07 浏览: 评论:0
网上生成php验证码程序用很多,下面我来给大家分享一款超不错的php验证码程序代码,有需要的朋友可参考,验证码识别一般分为以下几个步骤:1. 取出字模,2. 二值化,3. 计算特征,4. 对照样本.
php验证码程序代码如下:
- function _code($_code_length = 4, $_width = 75, $_height = 25){
- for($i=0;$i<$_code_length;$i++){
- $_nmsg .= dechex(mt_rand(0,15));
- }
- $_SESSION["code"] = $_nmsg;
- $_img = imagecreatetruecolor($_width, $_height);
- $_white = imagecolorallocate($_img, 250, 250, 250);
- imagefill($_img, 0, 0, $_white);
- $_gray = imagecolorallocate($_img, 196, 196, 196);
- imagerectangle($_img, 0, 0, $_width-1, $_height-1, $_gray);
- for ($i=0; $i < 6; $i++) {
- $_md_color = imagecolorallocate($_img, mt_rand(200,255), mt_rand(200,255), mt_rand(200,255));
- imageline($_img, mt_rand(0,$_width), mt_rand(0, $_height),mt_rand(0,$_width), mt_rand(0, $_height), $_md_color);
- }
- for ($i=0; $i < 50; $i++) {
- $_md_color = imagecolorallocate($_img, mt_rand(200,255), mt_rand(200,255), mt_rand(200,255));
- imagestring($_img, 1, mt_rand(1,$_width-5), mt_rand(1, $_height-5), "*", $_md_color);
- }
- for ($i=0; $i < $_code_length ; $i++) {
- $_md_color = imagecolorallocate($_img, mt_rand(0,102), mt_rand(0,102), mt_rand(0,102));
- imagestring($_img, 5, $i * $_width/$_code_length+ mt_rand(1, 10), mt_rand(1, $_height/2), $_SESSION["code"][$i], $_md_color);
- }
- header("Content-Type:image/png");
- imagepng($_img);
- imagedestroy($_img);
- }
- //验证码使用方法
- //开源代码phpfensi.com
- $getcode = $_POST['code'];
- if( $_SESSION["code"] = $getcode )
- {
- echo ' 验证合法,进入下一步';
- unset( $_SESSION["code"] );
- }
- else
- {
- echo ' 验证码不正确';
- header('location:vial.php');
- }
Tags: PHP验证码 PHP简单示例
- 上一篇:php防止sql注入原理介绍
- 下一篇:PHP验证码之Ajax验证实现方法
相关文章
- ·php网页生成验证码实现程序(2014-07-30)
- ·简单实例php验证码代码(2014-08-17)
- ·PHP验证码生成与验证例子(2014-08-22)
- ·PHP验证码生成程序几种方法(2014-08-22)
- ·PHP验证码实现代码简单示例(2014-08-22)
- ·PHP验证码之Ajax验证实现方法(2014-08-22)
- ·php中文汉字验证码程序(2014-08-23)
- ·一个完整php验证码实例程序(2014-08-25)
- ·php 用户登录验证码的实现方法(2014-09-11)
- ·php jquery 验证码代码(2014-09-20)
- ·php验证码生成器(2018-08-06)
- ·一个好用的PHP验证码类实例分享(2020-08-17)
- ·PHP+javascript制作带提示的验证码源码分享(2021-01-15)
- ·php程序总是提示验证码输入有误解决方案(2021-05-07)
- ·php验证码生成代码(2021-06-26)
- ·php验证码的制作思路和实现方法(2021-06-26)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)