-
php验证码生成与应用实例
在写用户验证页面,如注册,登录的时候,为了加强用户登录的安全性,添加验证码验证,验证码通过gd生成png图片,并把$randval随机数字赋给$_session['login_check_num'],在通过用户输入的$_post进行比较,来判断是否正确,达到需要实现的功能,需要修改php.ini文件,使php支持gd库.
- <?php
- //调用此页面,如果下面的式子成立,则生成验证码图片
- if($_get["action"]=="verifycode")
- {
- rand_create();
- }
- //验证码图片生成
- function rand_create()
- {
- //通知浏览器将要输出png图片
- header("content-type: image/png");
- //准备好随机数发生器种子
- srand((double)microtime()*1000000);
- //准备图片的相关参数
- $im = imagecreate(62,20);
- $black = imagecolorallocate($im, 0,0,0); //rgb黑色标识符
- $white = imagecolorallocate($im, 255,255,255); //rgb白色标识符
- $gray = imagecolorallocate($im, 200,200,200); //rgb灰色标识符
- //开始作图
- imagefill($im,0,0,$gray);
- while(($randval=rand()%100000)<10000);{
- $_session["login_check_num"] = $randval;
- //将四位整数验证码绘入图片
- imagestring($im, 5, 10, 3, $randval, $black);
- }
- //加入干扰象素
- for($i=0;$i<200;$i++){
- $randcolor = imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));
- imagesetpixel($im, rand()%70 , rand()%30 , $randcolor);
- }
- //输出验证图片
- imagepng($im);
- //销毁图像标识符
- imagedestroy($im);
- }
- //检验验证码
- function rand_check()
- { //开源代码phpfensi.com
- if($_post["reg_rand"] == $_session["login_check_num"]){
- return true;
- }
- else{
- exit("验证码输入错误");
- }
- }
- ?>
验证码,是一种区分用户是计算机和人的公共全自动程序,在captcha测试中,作为服务器的计算机会自动生成一个问题由用户来解答,这个问题可以由计算机生成并评判,但是必须只有人类才能解答,由于计算机无法解答captcha的问题,所以回答出问题的用户就可以被认为是人类.
- */
- session_start();
- $string = null;
- $im = imagecreatetruecolor(60,25); //创建真彩图60*25
- $bg = imagecolorallocate($im,255,255,255);//白色背景
- imagefill($im,0,0,$bg);填充白色
- $x = 5;//
- $y = 0;//文字坐标
- for($i=0 ; $i<4 ;$i++)
- {
- $char = mt_rand(0,9);
- $string .=$char;
- $y = mt_rand(0,10);
- $ccolor = imagecolorallocate($im,mt_rand(0,230),mt_rand(0,230),mt_rand(0,230));
- imagechar($im,6,$x,$y,$char,$ccolor);//填充文字
- $x += mt_rand(10,15);
- }
- for($i=0 ;$i
- {
- $x1 = mt_rand(0,80);
- $x2 = mt_rand(0,80);
- $y1 = mt_rand(0,30);
- $y2 = mt_rand(0,30);
- $x2 = $x1 +mt_rand(1,5);
- $y2 = $y1 +mt_rand(1,5);
- $lc = imagecolorallocate($im,mt_rand(0,230),mt_rand(0,230),mt_rand(0,230));
- imageline($im,$x1,$y1,$x2,$y2,$lc);//填充线条
- }
- $_session['code'] = md5($string);
- header("content-type:image/jpeg");
- imagepng($im);
- imagedestroy($im);
当然我们也可以能过同时我们可以明知php ajax来实例验证功能.
原文链接:http://www.phpfensi.com/php/20140823/4718.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式