博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP验证码
阅读量:4612 次
发布时间:2019-06-09

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

设计一个验证码类,在需要的时候可以随时调用

验证码类,保存为ValidateCode.class.php

1 
font = './latha.ttf';//注意字体路径要写对,否则显示不了图片17 }18 //生成随机码19 private function createCode() {20 $_len = strlen($this->charset)-1;21 for ($i=0;$i<$this->codelen;$i++) {22 $this->code .= $this->charset[mt_rand(0,$_len)];23 }24 }25 //生成背景26 private function createBg() {27 $this->img = imagecreatetruecolor($this->width, $this->height);28 $color = imagecolorallocate($this->img, mt_rand(157,255), mt_rand(157,255), mt_rand(157,255));29 imagefilledrectangle($this->img,0,$this->height,$this->width,0,$color);30 }31 //生成文字32 private function createFont() {33 $_x = $this->width / $this->codelen;34 for ($i=0;$i<$this->codelen;$i++) {35 $this->fontcolor = imagecolorallocate($this->img,mt_rand(0,156),mt_rand(0,156),mt_rand(0,156));36 imagettftext($this->img,$this->fontsize,mt_rand(-30,30),$_x*$i+mt_rand(1,5),$this->height / 1.4,$this->fontcolor,$this->font,$this->code[$i]);37 }38 }39 //生成线条、雪花40 private function createLine() {41 //线条42 for ($i=0;$i<6;$i++) {43 $color = imagecolorallocate($this->img,mt_rand(0,156),mt_rand(0,156),mt_rand(0,156));44 imageline($this->img,mt_rand(0,$this->width),mt_rand(0,$this->height),mt_rand(0,$this->width),mt_rand(0,$this->height),$color);45 }46 //雪花47 for ($i=0;$i<100;$i++) {48 $color = imagecolorallocate($this->img,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255));49 imagestring($this->img,mt_rand(1,5),mt_rand(0,$this->width),mt_rand(0,$this->height),'*',$color);50 }51 }52 //输出53 private function outPut() {54 header('Content-type:image/png');55 imagepng($this->img);56 imagedestroy($this->img);57 }58 //对外生成59 public function doimg() {60 $this->createBg();61 $this->createCode();62 $this->createLine();63 $this->createFont();64 $this->outPut();65 }66 //获取验证码67 public function getCode() {68 return strtolower($this->code);69 }70 }

注意:第16行中,要修改字体的路径,否则字体图片无法显示

实现,保存为captcha.php

1 session_start();2 require './ValidateCode.class.php';  //先把类包含进来,实际路径根据实际情况进行修改。3 $_vc = new ValidateCode();  //实例化一个对象4 $_vc->doimg();  5 $_SESSION['authnum_session'] = $_vc->getCode();//验证码保存到SESSION中

页面使用

转载自:

转载于:https://www.cnblogs.com/HuangWj/p/4369278.html

你可能感兴趣的文章
break and continue
查看>>
mysql 相關
查看>>
支持新版chrome,用webstorm编译形成css和sourcemap,调试sass和less源文件
查看>>
Climbing Stairs
查看>>
用来武装Firebug的十四款Firefox插件
查看>>
几种常用排序算法代码实现和基本优化(持续更新ing..)
查看>>
css样式之超出隐藏
查看>>
python-scrapy框架
查看>>
java.lang.OutOfMemoryError: bitmap size exceeds VM budget
查看>>
Java解惑精炼版(一)
查看>>
无法获得锁 /var/lib/dpkg/lock - open
查看>>
自己写数据库访问ORM
查看>>
多项式填坑。。?
查看>>
webapi同一个Controller多个函数
查看>>
ASP.NET Web API身份验证和授权
查看>>
C#模拟POST提交表单(一)--WebClient
查看>>
java socket来实现私聊和群聊-简易版
查看>>
Android中图片占用内存的计算
查看>>
java课后作业
查看>>
VUE:使用vue-cli脚手架无法安装npm install axios 的巨坑
查看>>