Table of Contents
Related recommendations:
Home Backend Development PHP Tutorial Example analysis of a practical PHP verification code class

Example analysis of a practical PHP verification code class

May 19, 2018 pm 03:06 PM
php Case Analysis verify

This article mainly introduces a practical PHP verification code class in detail, which has certain reference value. Interested friends can refer to the

Universal PHP verification code class for your reference. , the specific content is as follows

code.php is a verification code class. The name of the class is preferably the same as the name of the file, which is beneficial to our viewing.

code.php

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

<?php

header(&#39;Content-type:text/html;charset=utf8&#39;);

class Code{

  // 验证码个数$number

  protected $number;

  // 验证码类型$codeType

  protected $codeType;

  // 验证码图像宽度$width

  protected $width;

  // 验证码$height

  protected $height;

  // 验证码字符串$code

  protected $code;

  // 图像资源$image

  protected $image;

   

  public function __construct($number=4,$codeType=0,$height=50,$width=100){

    //初始化自己的成员属性

    $this->number=$number;

    $this->codeType=$codeType;

    $this->width = $width;

    $this->height= $height;

     

    //生成验证码函数

    $this->code = $this ->createCode();

     

  }

  public function __get($name){

    if ($name == &#39;code&#39;){

      return $this->code;

    }

    return false;

  }

  /*获取验证码*/

  public function getCode() {

    return $this->code;

  }

  /*图像资源销毁*/

  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->getNumCharCode();

        break;

      default:

        die(&#39;不支持此类验证码类型&#39;);

    }

    return $code;

  }

  protected function getNumberCode(){

    $str = join(&#39;&#39;, range(0, 9));

    return substr(str_shuffle($str),0, $this->number);

  }

  protected function getCharCode(){

    $str = join(&#39;&#39;, range(&#39;a&#39;, &#39;z&#39;));

    $str = $str.strtoupper($str);

    return substr(str_shuffle($str),0,$this->number);

  }

  protected function getNumCharCode(){

    $numstr = join(&#39;&#39;,range(0, 9));

    $str =join(&#39;&#39;, range(&#39;a&#39;, &#39;z&#39;));

    $str =$numstr.$str.strtoupper($str);

    return substr(str_shuffle($str), 0,$this->number);

  }

  protected function createImage(){

    $this->image = imagecreatetruecolor($this->width,

        $this->height);

  }

  protected function fillBack(){

    imagefill($this->image, 0, 0, $this->lightColor());

  }

  /*浅色*/

  protected function lightColor(){

    return imagecolorallocate($this->image, mt_rand(133,255), mt_rand(133,255), mt_rand(133,255));

  }

  /*深色*/

  protected function darkColor(){

    return imagecolorallocate($this->image, mt_rand(0,120), mt_rand(0,120), mt_rand(0,120));

  }

  protected function drawChar(){

    $width = ceil($this->width / $this->number);

    for ($i=0; $i< $this->number;$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());

    }

  }

  protected function drawLine(){

    for ($i=0;$i<5;$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->darkColor());

    }

  }

  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(&#39;Content-Type:image/png&#39;);

    imagepng($this->image);

  }

  public function outImage(){

//     创建画布

    $this->createImage();

//     填充背景色

    $this->fillBack();

//     将验证码字符串花到画布上

    $this->drawChar();

//     添加干扰元素

    $this->drawDisturb();

//     添加线条

    $this->drawLine();

//     输出并显示

    $this->show();

  }

}

Copy after login

test.php is new a new verification code and save it to In the session, it plays the role of saving and storing for the verification of our verification code.

test.php

1

2

3

4

5

6

7

8

<?php

//开启session

session_start();

require_once &#39;code.php&#39;;

 

$code= new Code(4,1,50,100);

$_SESSION[&#39;code&#39;]= $code->getCode();

$code->outImage();

Copy after login

login.php is the final verification.

login.php

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

<?php

    //开启Session

    session_start();

    //判断是否提交

    if(isset($_POST[&#39;dosubmit&#39;])){

      //获取session中的验证码并转为小写

      $sessionCode=strtolower($_SESSION[&#39;code&#39;]);

      //获取输入的验证码

      $code=strtolower($_POST[&#39;code&#39;]);

      //判断是否相等

      if($sessionCode==$code){

        echo "<script type=&#39;text/javascript&#39;>alert(&#39;验证码正确!&#39;);</script>";

      }else{

        echo "<script type=&#39;text/javascript&#39;>alert(&#39;验证码错误!&#39;);</script>";

      }

    }

  ?>

  <!DOCTYPE html>

  <html>

    <head>

      <title></title>

      <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>

      <style type="text/css">

        *{margin:0px;padding:0px;}

        ul{

          width:400px;

          list-style:none;

          margin:50px auto;

        }

          

        li{

          padding:12px;

          position:relative;

        }

          

        label{

          width:80px;

          display:inline-block;

          float:left;

          line-height:30px;

        }

          

        input[type=&#39;text&#39;],input[type=&#39;password&#39;]{

          height:30px;

        }

          

        img{

          margin-left:10px;

        }

          

        input[type="submit"]{

          margin-left:80px;

          padding:5px 10px;

        }

      </style>

    </head>

    <body>

      <form action="login.php" method="post">

        <ul>

          <li>

            <label>用户名:</label>

            <input type="text" name="username"/>

          </li>

          <li>

            <label>密码:</label>

            <input type="password" name="password"/>

          </li>

          <li>

            <label>验证码:</label>

            <input type="text" name="code" size="4" style="float:left"/>

            <img src="test.php" onclick="this.src=&#39;test.php?Math.random()&#39;"/>

          </li>

          <li>

            <input type="submit" value="登录" name="dosubmit"/>

          </li>

        </ul>

      </form>

    </body>

  </html>

Copy after login

The above is the entire content of this article, I hope it will be helpful to everyone's study.

How to build a beautiful PHP verification code classFile and calling method

Detailed explanation of examples of calling methods of PHP verification code class

PHP verification code classIntroduction to files and calling methods

The above is the detailed content of Example analysis of a practical PHP verification code class. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1677
14
PHP Tutorial
1279
29
C# Tutorial
1257
24
PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP's Purpose: Building Dynamic Websites PHP's Purpose: Building Dynamic Websites Apr 15, 2025 am 12:18 AM

PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.

Choosing Between PHP and Python: A Guide Choosing Between PHP and Python: A Guide Apr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Python: A Deep Dive into Their History PHP and Python: A Deep Dive into Their History Apr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Why Use PHP? Advantages and Benefits Explained Why Use PHP? Advantages and Benefits Explained Apr 16, 2025 am 12:16 AM

The core benefits of PHP include ease of learning, strong web development support, rich libraries and frameworks, high performance and scalability, cross-platform compatibility, and cost-effectiveness. 1) Easy to learn and use, suitable for beginners; 2) Good integration with web servers and supports multiple databases; 3) Have powerful frameworks such as Laravel; 4) High performance can be achieved through optimization; 5) Support multiple operating systems; 6) Open source to reduce development costs.

PHP's Impact: Web Development and Beyond PHP's Impact: Web Development and Beyond Apr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP vs. Python: Use Cases and Applications PHP vs. Python: Use Cases and Applications Apr 17, 2025 am 12:23 AM

PHP is suitable for web development and content management systems, and Python is suitable for data science, machine learning and automation scripts. 1.PHP performs well in building fast and scalable websites and applications and is commonly used in CMS such as WordPress. 2. Python has performed outstandingly in the fields of data science and machine learning, with rich libraries such as NumPy and TensorFlow.

The Continued Use of PHP: Reasons for Its Endurance The Continued Use of PHP: Reasons for Its Endurance Apr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

See all articles