Home Backend Development PHP Tutorial 辛星和您用更简单的方式去实现PHP中的验证码

辛星和您用更简单的方式去实现PHP中的验证码

Jun 23, 2016 pm 01:53 PM
php Way Simple Verification code

       说实话,提到验证码我想大家都不会陌生,确实,验证码还是挺常见的,现在搜索一下PHP的验证码类简直是海量的数据,那我们今天就来实现一个自己的验证码把,不过它比较简单,这也是我说的用更简单的方式去实现一个验证码。

       总的来说分成两步,第一步就是先实现一个验证码,第二步就是通过这个验证码来进行验证,我们先看一下如何去实现这个验证码,当然这里需要用到gd库的知识,请看下面的代码示例:

<?php //首先要开启sessionsession_start();//说明这是一张图片header("Content-type:image/png");//用来动态生成的数字和字母组合$str = "3,4,5,6,7,8,9,a,b,c,d,e,f,g";//转化为数组$list = explode(",",$str);//得到该数组的下标的最大值$max = count($list) - 1;//用于表示该验证码$verify = "";//生成验证码字符串for($i = 0; $i <5;$i ++){	$rand = mt_rand(0,$max);	$verify .= $list[$rand];}//写入session$_SESSION['code'] = $verify;//生成一个58x28的图片$im = imagecreate(58,28);//产生黑色$black = imagecolorallocate($im,0,0,0);//产生白色$white = imagecolorallocate($im,255,255,255);//先用白色背景把图片刷成白色imagefill($im,0,0,$white);//然后把字符串写到图片上去imagestring($im,5,10,8,$verify,$black);//生成png图片,并且显示到屏幕上imagepng($im);//销毁该图片imagedestroy($im);
Copy after login

      这里顺便说一下画图的基本步骤把:首先创建一个图像,我们用imagecreate函数,然后用imagecolorallocate来调色,然后用各种imagexxx来绘制图像,最后用imagexxx来生成各种样式的图片,最后imagedestroy来销毁图片,大致都是这么一个流程。其中我感觉比较值得一提的是imagestring的参数,第一个表示绘画的图片这个没的说,第二额参数表示的是字体,如果为0,1,2,3,4,5则表示内置字体,第三个参数表示绘画的左上角的x坐标,第四个表示绘画的左上角的y坐标,第五个参数是颜色,我们这里采用了黑色来绘图。

来看一下我们生成的图片是什么样子的把:


那么我们怎么使用该验证码呢?既然文件都写好了,那么我们再写一个文件来导入该验证码就可以了,然后从session里面来得到它的值,看如下代码:

	
Copy after login
辛星和您用更简单的方式去实现PHP中的验证码

   这里使用了部分Javascript,如果读者不熟悉Javascript,那么大可以跳过去,下面是运行效果截图:


看,当然,真正的工程要复杂的多,这里给出的是一个示例程序,希望我们一同进步。。



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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles