PHP实现随机数字、字母的验证码功能


Posted in PHP onAugust 01, 2018

可自定义生成验证码文字的大小、数量、干扰项等等,也可以自定义验证文字的字体。。。

废话不多说,直接上代码:

1、classgd.class.php

<?php
Class Captcha{
    private $_fontfile='';
    private $_size=36;
    private $_width=200;
    private $_height=100;
    private $_length=4;
    private $_image=null;
    private $_snow=0;
    private $_pixel=0;
    private $_line=0;
  public function __construct($config=array()){
    if(is_array($config)&&count($config)>0){
      if(isset($config['fontfile'])&&is_file($config['fontfile'])&&is_readable($config['fontfile'])){
        $this->_fontfile=$config['fontfile'];
      }else{
        return false;
      }
      if(isset($config['size'])&&$config['size']>0){
        $this->_size=(int)$config['size'];
      }
      if(isset($config['width'])&&$config['width']>0){
        $this->_width=(int)$config['width'];
      }
      if(isset($config['height'])&&$config['height']>0){
        $this->_height=(int)$config['height'];
      }
      if(isset($config['length'])&&$config['length']>0){
        $this->_length=(int)$config['length'];
      }
      if(isset($config['snow'])&&$config['snow']>0){
        $this->_snow=(int)$config['snow'];
      }
      if(isset($config['pixel'])&&$config['pixel']>0){
        $this->_pixel=(int)$config['pixel'];
      }
      if(isset($config['line'])&&$config['line']>0){
        $this->_line=(int)$config['line'];
      }
      $this->_image=imagecreatetruecolor($this->_width,$this->_height);
      return $this->_image;
     }
     else{
      return false;
    }
  }
  public function getCaptcha(){
    $white=imagecolorallocate($this->_image,255,255,255);
    imagefilledrectangle($this->_image,0,0,$this->_width,$this->_height,$white);
    $str=$this->_generateStr($this->_length);
    if(false===$str){
      return false;
    }
    $fontfile=$this->_fontfile;
    for($i=0;$i<$this->_length;$i++){
      $size=$this->_size;
      $angle=mt_rand(-30,30);
      $x=ceil($this->_width/$this->_length)*$i+mt_rand(5,10);
      $y=ceil($this->_height/1.5);
      $color=$this->_getRandColor();
      //针对中文字符截取
      //$text=mb_substr($str,$i,1,'utf-8');
      $text=$str{$i};
      imagettftext($this->_image, $size, $angle, $x, $y, $color, $fontfile, $text);
    }
    if($this->_snow){
      $this->_getSnow();
    }else{
      if($this->_pixel){
        $this->_getPixel();
      }
      if($this->_line){
        $this->_getLine();
      }
    }
    header('content-type:image/png');
    imagepng($this->_image);
    imagedestroy($this->_image);
    return strtolower($str);
  }
  private function _getSnow(){
    for($i=1;$i<=$this->_snow;$i++){
      imagestring($this->_image,mt_rand(1,5),mt_rand(0,$this->_width),mt_rand(0,$this->_height),'*',$this->_getRandColor());
    }
  }
  private function _getPixel(){
    for($i=1;$i<=$this->_pixel;$i++){
      imagesetpixel($this->_image,mt_rand(0,$this->_width),mt_rand(0,$this->_height),$this->_getRandColor());
    }
  }
  private function _getLine(){
    for($i=1;$i<=$this->_line;$i++){
      imageline($this->_image,mt_rand(0,$this->_width),mt_rand(0,$this->_height),mt_rand(0,$this->_width),mt_rand(0,$this->_height),$this->_getRandColor());
    }
  }
  private function _generateStr($length=4){
    if($length<1 || $length>30){
      return false;
    }
    $chars=array(
      'a','b','c','d','e','f','g','h','k','m','n','p','x','y','z',
      'A','B','C','D','E','F','G','H','K','M','N','P','X','Y','Z',
      1,2,3,4,5,6,7,8,9
      );
    $str=join('',array_rand(array_flip($chars),$length));
    return $str;
  }
  private function _getRandColor(){
    return imagecolorallocate($this->_image,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
  }
}
?>

 2、testCaptcha.php

<?php
require_once 'classgd.class.php';
$config=array(
'fontfile'=>'fonts/simfang.ttf',  //引入字体文件
//'snow'=>50,
'pixel'=>100,
'line'=>10
  );
$captcha=new Captcha($config);
$captcha->getCaptcha();
?>

总结

以上所述是小编给大家介绍的PHP实现随机数字、字母的验证码功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!

PHP 相关文章推荐
注意:php5.4删除了session_unregister函数
Aug 05 PHP
PHP把JPEG图片转换成Progressive JPEG的方法
Jun 30 PHP
php实现的发送带附件邮件类实例
Sep 22 PHP
php中fsockopen用法实例
Jan 05 PHP
php实现读取手机客户端浏览器的类
Jan 09 PHP
PHP使用正则表达式获取微博中的话题和对象名
Jul 18 PHP
浅谈mysql_query()函数的返回值问题
Sep 05 PHP
PHP基于反射机制实现插件的可插拔设计详解
Nov 10 PHP
在laravel中使用Symfony的Crawler组件分析HTML
Jun 19 PHP
php的扩展写法总结
May 14 PHP
PHP中有关长整数的一些操作教程
Sep 11 PHP
关于laravel 日志写入失败问题汇总
Oct 17 PHP
PHP使用XMLWriter读写xml文件操作详解
Jul 31 #PHP
laravel + vue实现的数据统计绘图(今天、7天、30天数据)
Jul 31 #PHP
PHP常用日期加减计算方法实例小结
Jul 31 #PHP
ThinkPHP5.0多个文件上传后找不到临时文件的修改方法
Jul 30 #PHP
PHP笛卡尔积实现算法示例
Jul 30 #PHP
作为PHP程序员你要知道的另外一种日志
Jul 30 #PHP
详解Laravel5.6 Passport实现Api接口认证
Jul 27 #PHP
You might like
PHP中使用crypt()实现用户身份验证的代码
2012/09/05 PHP
分享一下贝贝成长进度的php代码
2012/09/14 PHP
PHP调用MsSQL Server 2012存储过程获取多结果集(包含output参数)的详解
2013/07/03 PHP
php中的四舍五入函数代码(floor函数、ceil函数、round与intval)
2014/07/14 PHP
PHP计算百度地图两个GPS坐标之间距离的方法
2015/01/09 PHP
php删除文本文件中重复行的方法
2015/04/28 PHP
基于PHP代码实现中奖概率算法可用于刮刮卡、大转盘等抽奖算法
2015/12/20 PHP
基于jquery的划词搜索实现(备忘)
2010/09/14 Javascript
在浏览器窗口上添加遮罩层的方法
2012/11/12 Javascript
使用jQuery实现的网页版的个人简历(可换肤)
2013/04/19 Javascript
JS实现的省份级联实例代码
2013/06/24 Javascript
EasyUi datagrid 实现表格分页
2015/02/10 Javascript
javaScript中Math()函数注意事项
2015/06/18 Javascript
javascript html5实现表单验证
2016/03/01 Javascript
微信小程序 网络请求(post请求,get请求)
2017/01/17 Javascript
vue实现登录后页面跳转到之前页面
2018/01/07 Javascript
vue.js或js实现中文A-Z排序的方法
2018/03/08 Javascript
Vue使用mixin分发组件的可复用功能
2019/09/01 Javascript
JavaScript计算正方形面积
2019/11/26 Javascript
vue excel上传预览和table内容下载到excel文件中
2019/12/10 Javascript
Python工程师面试题 与Python基础语法相关
2016/01/14 Python
Python引用类型和值类型的区别与使用解析
2017/10/17 Python
python绘制双柱形图代码实例
2017/12/14 Python
python随机取list中的元素方法
2018/04/08 Python
详解Python 数据库的Connection、Cursor两大对象
2018/06/25 Python
Python Django给admin添加Action的方法实例详解
2019/04/29 Python
Flask框架请求钩子与request请求对象用法实例分析
2019/11/07 Python
css3 旋转按钮 使用CSS3创建一个旋转可变色按钮
2012/12/31 HTML / CSS
基于 HTML5 Canvas实现 的交互式地铁线路图
2018/03/05 HTML / CSS
实习老师个人总结的自我评价
2013/09/28 职场文书
文秘专业应届生求职信范文
2013/11/14 职场文书
装修五一活动策划案
2014/01/23 职场文书
应届毕业生自荐书
2014/06/18 职场文书
goland 设置project gopath的操作
2021/05/06 Golang
python关于集合的知识案例详解
2021/05/30 Python
Redis+Lua脚本实现计数器接口防刷功能(升级版)
2022/02/12 Redis