php验证码类

在学习面向对象过程中简单的写了一个验证嘛类来练手

<?php

/**
 * Class Verifying
 * 验证码操作类
 */


class Verifying
{
    protected $num;  #验证码长度
    protected $codeType;
    protected $width;
    protected $height;
    protected $image; #图像资源
    protected $code; #验证码字符串

    public function __construct($num=4,$codeType=2,$width=100,$height=50)
    {
        $this->num = $num;
        $this->codeType= $codeType;
        $this->width = $width;
        $this->height = $height;
        $this->code = $this->createCode();

    }

    public function __destruct()
    {
        imagedestroy($this->image);
    }

    protected function createCode()
    {
        switch ($this->codeType){
            case 0:
                $code = $this->getNumberCode();
                break;
            case 1:
                $code = $this->getCharCode();
                break;
            case 2:
                $code =$this->getNumberCharCode();
                break;
            default:
                die('不支持此类型的验证码');
        }
        return $code;
    }

    public function __get($name)
    {
       return $name == 'code' ?  $this->code : false;
    }

    protected function getNumberCode()
    {
        $str = join('',range(0,9));
        return substr(str_shuffle($str),0,$this->num);
    }

    protected function getCharCode()
    {
        $str = join('',range('a','z'));
        $str = $str.strtoupper($str);  #strtoupper() 把str转换成大写在拼接成小写
        return substr(str_shuffle($str),0,$this->num);
    }

    protected function getNumberCharCode()
    {
        $numStr = join('',range(0,9));
        $str = join('',range('a','z'));
        $str = $numStr.$str.strtoupper($str);
        return substr(str_shuffle($str),0,$this->num);
    }

    protected function drawDisturb()
    {
        for ($i = 0; $i<150; $i++){
            $x = mt_rand(0,$this->width);
            $y = mt_rand(0,$this->height);
            imagesetpixel($this->image,$x,$y,$this->lightColor());
        }
    }

    protected function show()
    {
        header('Content-Type:image/png');
        imagepng($this->image);
    }

    /**
     * 验证码显示
     */
    public function outImage()
    {
        #创建画布
        $this->createImage();
        #填充背景色
        $this->fillBack();
        #将验证码背景色划到画布中
        $this->drawChar();
        #添加干扰元素
        $this->drawDisturb();
        #输出并且显示
        $this->show();
    }

    protected function createImage()
    {
        $this->image = imagecreatetruecolor($this->width,$this->height);
    }

    protected function fillBack()
    {
        imagefill($this->image,0,0,$this->lightColor());
    }

    protected function drawChar()
    {
        $width = ceil($this->width / $this->num);
        for ($i = 0; $i < $this->num; $i++){
            $x = mt_rand($i * $width+5,($i+1) * $width -10);
            $y = mt_rand(0,$this->height-15);
            imagechar($this->image,5,$x,$y,$this->code[$i],$this->darkColor());
        }
    }

    /**
     * @return int
     * 浅色背景
     */
    protected function lightColor()
    {
        return imagecolorallocate($this->image,mt_rand(130,255),mt_rand(130,255),mt_rand(130,255));
    }

    /**
     * @return int
     * 深色背景
     */
    protected function darkColor()
    {
        return imagecolorallocate($this->image,mt_rand(0,120),mt_rand(0,120),mt_rand(0,120));
    }

}

$code = new Verifying();
 $code->outImage();

推荐学习地址

http://xiaoyupp.top/index/Muke/index
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值