类库下载 PHP类库 PHP가 이미지 확인 코드 데모를 생성합니다. [OOP 객체 지향 버전]

PHP가 이미지 확인 코드 데모를 생성합니다. [OOP 객체 지향 버전]

Oct 09, 2016 am 09:19 AM

PHP生成图片验证码demo【OOP面向对象版本】

下面是我今天下午用PHP写的一个生成图片验证码demo,仅供参考。

这个demo总共分为4个文件,具体代码如下:

1、code.html中的代码:

<!doctype html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>登录、注册验证码生成</title>
    </head>
    <body>
         <!--
             * @Description  网站登录/注册验证码生成类
             * @Author  赵一鸣
             * @OnlineDemo http://www.zymseo.com/demo/verificationcode/code.html
             * @Date  2016年10月6日 
         -->
        <form action="checkcode.php" method="post">
            <input type="text" name="code" /><br/>
            <img  src="/static/imghw/default1.png"  data-src="showcode.php"  class="lazy"   onclick="this.setAttribute(&#39;src&#39;,&#39;showcode.php?&#39;+Math.random())" / alt="PHP가 이미지 확인 코드 데모를 생성합니다. [OOP 객체 지향 버전]" >
            <span>看不清?点击图片即可切换验证码</span><br/>
            <input type="submit" name="sub" value="登录/注册" />
        </form>
    </body>
</html>
로그인 후 복사

2、createcode.class.php中的代码:

<?php
    /**
     * @Description  网站登录/注册验证码生成类
     * @Author  赵一鸣
     * @OnlineDemo http://www.zymseo.com/demo/verificationcode/code.html
     * @Date  2016年10月6日 
     */
    class Createcode{
        //画布资源
        public $img;
        //画布宽度
        private $img_width;
        //画布高度
        private $img_height;
        //画布颜色
        private $img_bgcolor;
        //验证码文字内容
        private $str_content;
        //生成的验证码内容
        private $code_content;
        //验证码颜色
        private $code_content_color;
        //构造函数
        public function __construct($img_width,$img_height,$str_content,$code_content_color){
            if($this->gdcheck()){
                $this->img_width = $img_width;
                $this->img_height = $img_height;
                $this->str_content = $str_content;
                $this->code_content_color = $code_content_color;
                $this->get_code();
                $this->session_code();
            }
        }
        //生成画布
        public function get_img(){
            //定义画布
            $this->img = imagecreatetruecolor($this->img_width, $this->img_height);
            //画布背景色
            $this->img_bgcolor = imagecolorallocate($this->img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));
            //给画图填充背景色
            imagefill($this->img, 0, 0, $this->img_bgcolor);
            //取得画布的宽高
            $img_width = imagesx($this->img);
            $img_height = imagesy($this->img);
            //画布中插入验证码
            imagestring($this->img, 5, ($this->img_width/3), ($this->img_height/2.5), $this->code_content, imagecolorallocate($this->img, hexdec(substr($this->code_content_color, 1,2)), hexdec(substr($this->code_content_color, 3,2)), hexdec(substr($this->code_content_color, 5,2))));
            //画布中插入像素点
            $this->get_pix();
            //画布中插入直线
            $this->get_line();
            //画布显示
            header(&#39;Content-type:image/png&#39;);
            imagepng($this->img);
        }
        //生成验证码
        private function get_code(){
            $str_content_len = strlen($this->str_content);
            for($i=0;$i<4;$i++){
                $this->code_content .= substr($this->str_content, mt_rand(0,$str_content_len-1),1);
            }
        }
        //生成像素点
        private function get_pix(){
            for($j=0;$j<300;$j++){
                $image_pix .= imagesetpixel($this->img, mt_rand(0,$this->img_width), mt_rand(0,$this->img_height), imagecolorallocate($this->img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255)));
            }
            return $image_pix;
        }
        //生成直线
        private function get_line(){
            for($l=0;$l<2;$l++){
                $img_line .= imageline($this->img, mt_rand(0,$this->img_width), mt_rand(0,$this->img_height), mt_rand(0,$this->img_width), mt_rand(0,$this->img_height), imagecolorallocate($this->img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255)));
            }
            return $img_line;
        }
        //session存储验证码
        private function session_code(){
            session_start();
            $_SESSION[&#39;code&#39;] = $this->code_content;
        }
        //判断程序是否支持GD库
        private function gdcheck(){
            if(extension_loaded(&#39;gd&#39;)){
                return true;
            }else{
                return false;
                exit();
            }
        }
    }
로그인 후 복사

3、checkcode.php中的代码:

<?php
/**
 * @Description  网站登录/注册验证码生成类
 * @Author  赵一鸣
 * @OnlineDemo http://www.zymseo.com/demo/verificationcode/code.html
 * @Date  2016年10月6日
 */
    header(&#39;Content-type:text/html;charset="utf-8"&#39;);
    session_start();
    if($_POST[&#39;code&#39;]!=&#39;&#39;){
        if($_SESSION[&#39;code&#39;]==$_POST[&#39;code&#39;]){
            echo &#39;<script type="text/javascript">
                    alert("验证码填写成功");
                    history.go(-1);
                </script>&#39;;
        }else{
            echo &#39;<script type="text/javascript">
                    alert("验证码填写失败");
                    history.go(-1);
                </script>&#39;;
        }
    }
로그인 후 복사

4、showcode.php中的代码:

<?php
/**
 * @Description  网站登录/注册验证码生成类
 * @Author  赵一鸣
 * @OnlineDemo http://www.zymseo.com/demo/verificationcode/code.html
 * @Date  2016年10月6日
 */
    function __autoload($classname){
        include strtolower($classname).&#39;.class.php&#39;;
    }
    //定义验证码的取值范围
    $str_content = &#39;abcdefghijklmnopqrstuvwxyz0123456789&#39;;
    //验证码文字颜色
    $code_content_color = &#39;#ffffff&#39;;
    //初始化对象
    $code = new Createcode(100,30,$str_content,$code_content_color);
    $code->get_img();
로그인 후 복사

原文地址:http://www.zymseo.com/php/334.html

转载请注明出处!


본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

AI Hentai Generator

AI Hentai Generator

AI Hentai를 무료로 생성하십시오.

뜨거운 도구

메모장++7.3.1

메모장++7.3.1

사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

드림위버 CS6

드림위버 CS6

시각적 웹 개발 도구

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)