php入门级的PHP验证码程序
发布:smiling 来源: PHP粉丝网 添加日期:2014-02-10 11:55:33 浏览: 评论:0
生成验证码我们会要用到php 图形处理函数,如imagecreate,imagepng,header之类的函数,下面我们一起来看个简单的实例。
实例代码如下:
- <?php
- session_start();
- $im = imagecreate(80,30);//创建图片
- $color = imagecolorallocate($im,rand(150,200),rand(150,200),rand(150,200));//设置图片背景
- $str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789";//产生随机字符串
- for($i=0;$i<5;$i++){
- $code .= $str[rand(0,(strlen($str)-1))];
- }
- $_SESSION['code'] = $code;
- for($a=0;$a<5;$a++){ //将字符串写入图片资源
- $x = $a*10 + 15;
- $y = rand(5,10); // www.111cn.net
- imagechar($im,5,$x,$y,$code{$a},imagecolorallocate($im,0,0,0));
- }
- header("Content-type:image/png");//输出图片资源
- imagepng($im);
- ?>
例2代码如下:
- <?php
- if(!isset($_SESSION)){ //判断session是否开启
- session_start(); //开启就session
- }
- $width=70; //布画宽度
- $height=25; //布画高度
- $length=4;//验证码长度
- $code=getcode($length); //获取随机字符串
- $_SESSION['verfyCode'] = $code;
- $img=imagecreate($width,$height);
- $bgcolor=imagecolorallocate($img,240,240,240);
- $rectangelcolor=imagecolorallocate($img,150,150,150);
- imagerectangle($img,1,1,$width-1,$height-1,$rectangelcolor);//画边框
- for($i=0;$i<$length;$i++){//循环写字
- $codecolor=imagecolorallocate($img,mt_rand(50,200),mt_rand(50,128),mt_rand(50,200));
- $angle=rand(-20,20);
- $charx=$i*15+8;
- $chary=($height+14)/2+rand(-1,1);
- imagettftext($img,15,$angle,$charx,$chary,$codecolor,'C:WINDOWSFontsSIMKAI.TTF',
- $code[$i]);
- }
- for($i=0;$i<20;$i++){//循环画线
- $linecolor=imagecolorallocate($img,mt_rand(0,250),mt_rand(0,250),mt_rand(0,250));
- $linex=mt_rand(1,$width-1);
- $liney=mt_rand(1,$height-1);
- imageline($img,$linex,$liney,$linex+mt_rand(0,4)-2,$liney+mt_rand(0,4)-2,$linecolor);
- }
- for($i=0;$i<100;$i++){//循环画点
- $pointcolor=imagecolorallocate($img,mt_rand(0,250),mt_rand(0,250),mt_rand(0,250));
- imagesetpixel($img,mt_rand(1,$width-1),mt_rand(1,$height-1),$pointcolor);
- }
- function getcode($length){//生成php随机数
- $pattern = '1234567890ABCDEFGHIJKLOMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ';//字符池
- for($i=0;$i<$length;$i++) {
- $key .= $pattern{mt_rand(0,35)};
- }
- return $key;
- }
- ob_clean();
- header('Content-type:image/png');
- imagepng($img);
- ?>
Tags: php 入门级 验证码程序
- 上一篇:php中0与空 Null false的区别
- 下一篇:php5类型约束学习笔记
相关文章
- ·PHP 是什么?(2013-11-12)
- ·Php.ini文件位置在哪里 Php.ini文件找不到(2013-11-12)
- ·PHP 数据类型(2013-11-12)
- ·php 获取当前脚本的url(2013-11-12)
- ·php技术生成静态页面的实现(2013-11-13)
- ·缺陷月项目启动 披露PHP脚本语言漏洞(2013-11-13)
- ·在PHP中全面阻止SQL注入式攻击(2013-11-13)
- ·php生成随机密码的几种方法(2013-11-13)
- ·PHP中使用FCKeditor2.3.2配置(2013-11-13)
- ·如何使用PHP开发高效的WEB系统(2013-11-13)
- ·php:树形结构的算法(2013-11-13)
- ·php4和php5区别(2013-11-13)
- ·php数据库连接(2013-11-13)
- ·如何正确理解PHP的错误信息(2013-11-13)
- ·php页面漏洞分析及相关问题解决(2013-11-13)
- ·当在连接PHP时,抱怨一些数值没有定义参考?(2013-11-27)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)