php验证码操作
Posted 行走江湖的码农
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php验证码操作相关的知识,希望对你有一定的参考价值。
验证码 的基础操作
首先需要确保php环境开启了gd库,如何开启查看百度
在thinkphp环境下编写
先看视图界面
很简单的表单页面 ,
<!DOCTYPE html>
<html>
<head>
<title></title>
<script type="text/javascript">
function test1 ()
var simg=document.getElementById('simg').src="__URL__/gd/?r=<?php echo rand() ?>";
</script>
</head>
<body>
<form action="__URL__/gd2">
<img src="__URL__/gd/?r=<?php echo rand() ?>" id="simg">
<input type="text" name="code" >
<a href="javascript:void(0)" onclick="test1()">看不清?</a>
<input type="submit" value="提交">
</form>
</body>
</html>
控制器层
public function gd()
// 宽和高100*30像素
$images=imagecreatetruecolor(100,30);
// 背景图
$bgcolor=imagecolorallocate($images, 255, 255, 255) ;
imagefill($images,100,10,$bgcolor);
$code="";
for($i=0;$i<4;$i++)
$fontsize=10; //字体大小
// 增加复杂 添加字符和数字配合
// 字体颜色随机 最好控制0~120之间, 因为该区间颜色是深色范围
$fontcolor=imagecolorallocate($images, rand(0,120), rand(0,120),rand(0,120));
// 随机数字
$fontcontent=rand(0,9);
// 随机数字和字母
$data="abcdefghijklmnopqrstuvwxyz0123456789";
$fontcontent=substr($data,rand(0,strlen($data)),1);
$code.=$fontcontent;
// x,y轴随机
$x=($i*100/4)+rand(5,10);
$y=rand(5,10);
// 水平画一条线
imagestring($images, $fontsize, $x, $y, $fontcontent, $fontcolor);
// 多台服务器可以使用memcache保存数据
$_SESSION['auth_code']=$code;
// 接着添加干扰素 干扰线和干扰点
// 干扰点设置
for($i=0;$i<200;$i++)
$pointcolor=imagecolorallocate($images, rand(50,200), rand(50,200), rand(50,200)) ;
// 随机点
imagesetpixel($images,rand(1,99),rand(1,99),$pointcolor);
// 干扰线设置
for($i=0;$i<3;$i++)
$lincolor=imagecolorallocate($images, rand(50,250), rand(50,250), rand(50,250)) ;
// 随机线
imageline($images, rand(1,99), rand(1,29), rand(1,99), rand(1,29), $lincolor);
// 在输出图片前面必须先输出header
header("Content-type:image/png");
imagepng($images);
imagedestroy($images);
exit;
业务处理
public function gd2()
if(trim(strtolower($_REQUEST['code']))==$_SESSION['auth_code'])
echo "输入正确";
else
echo "输入失败";
$this->display();
以上是关于php验证码操作的主要内容,如果未能解决你的问题,请参考以下文章