博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php 验证码 库,php通过GD库实现验证码功能
阅读量:5150 次
发布时间:2019-06-13

本文共 1882 字,大约阅读时间需要 6 分钟。

实现的效果

962

具体实现

captcha.php

/*PHP实现验证码*/

session_start();//开启会话

//创建画布

$image = imagecreatetruecolor(100, 38);

//背景颜色

$bgcolor = imagecolorallocate($image, 255, 255, 255);

imagefill($image, 0, 0, $bgcolor);

$captch_code = '';//存储验证码

// //随机选取4个数字

// for ($i = 0; $i < 4; $i++) {

// $fontsize = 10; //

// $fontcolor = imagecolorallocate($image, rand(0, 120), rand(0, 120), rand(0, 120));//随机颜色

// $fontcontent = rand(0, 9);

// $captch_code .= $fontcontent;

// $x = ($i * 100 / 4) + rand(5, 10); //随机坐标

// $y = rand(5, 10);

// imagestring($image, $fontsize, $x, $y, $fontcontent, $fontcolor);

// }

//字母和数字混合验证码

for ($i = 0; $i < 4; $i++) {

$fontsize = 10; //

$fontcolor = imagecolorallocate($image, rand(0, 120), rand(0, 120), rand(0, 120));//??????

$data = 'abcdefghijklmnopqrstuvwxyz1234567890'; //数据字典

$fontcontent = substr($data, rand(0, strlen($data)), 1);

$captch_code .= $fontcontent;

$x = ($i * 100 / 4) + rand(5, 10);

$y = rand(5, 10);

imagestring($image, $fontsize, $x, $y, $fontcontent, $fontcolor);

}

$_SESSION['captch_code'] = $captch_code;

//增加干扰点

for ($i = 0; $i < 200; $i++) {

$pointcolor = imagecolorallocate($image, rand(50, 200), rand(50, 200), rand(50, 200));

imagesetpixel($image, rand(1, 99), rand(1, 29), $pointcolor);//

}

//增加干扰线

for ($i = 0; $i < 3; $i++) {

$linecolor = imagecolorallocate($image, rand(80, 280), rand(80, 220), rand(80, 220));

imageline($image, rand(1, 99), rand(1, 29), rand(1, 99), rand(1, 29), $linecolor);

}

//输出格式

header('content-type: image/png');

imagepng($image);

//销毁图片

imagedestroy($image);

?>

index.php

session_start();//开启会话

?>

验证码:

captcha.php

login.php

session_start();//开启会话

if(isset($_SESSION['user_code'])){

if($_SESSION['user_code'] && $_SESSION['user_code'] !== $_POST['user_code']){

die('验证码错误');

}

else{

echo '验证码正确';

}

// 验证码重置

$_SESSION['user_code'] = '';

}else{

die('请输入验证码');

}

?>

看法

没想到一个验证码功能这么简单,我以前想的太过复杂了。

0

0

vote

Article Rating

转载地址:http://ildnv.baihongyu.com/

你可能感兴趣的文章
HashPump用法
查看>>
cuda基础
查看>>
Vue安装准备工作
查看>>
oracle 创建暂时表
查看>>
201421410014蒋佳奇
查看>>
Xcode5和ObjC新特性
查看>>
LibSVM for Python 使用
查看>>
Centos 7.0 安装Mono 3.4 和 Jexus 5.6
查看>>
CSS属性值currentColor
查看>>
java可重入锁reentrantlock
查看>>
浅谈卷积神经网络及matlab实现
查看>>
解决ajax请求cors跨域问题
查看>>
《收获,不止Oracle》pdf
查看>>
Real-Time Rendering 笔记
查看>>
如何理解HTML结构的语义化
查看>>
Activity之间的跳转:
查看>>
实验四2
查看>>
多路复用
查看>>
Python数据可视化之Pygal(雷达图)
查看>>
Java学习笔记--字符串和文件IO
查看>>