search
HomeBackend DevelopmentPHP ProblemWhat is the process of designing verification code in php
What is the process of designing verification code in phpAug 28, 2019 pm 04:41 PM
phpdesignprocessVerification code

What is the process of designing verification code in php

Website registration, login or message page all require a registration code to verify the legitimacy of the current operator, in order to prevent the website from being maliciously registered by machines.

Generating a verification code is nothing more than a few steps. First, get a random string, then create a canvas, write the generated string on the canvas, and we can also draw lines on the canvas. Draw snowflakes and now post a code that generates a verification code.

Related recommendations: "PHP Getting Started Tutorial"

Source code:

<?php
session_start(); //开启session
//创建随机码,并保存在session中
for($i=0;$i<4;$i++)
{
$_nmsg.=dechex(mt_rand(0,15));
}
//保存到session中
$_SESSION[&#39;code&#39;]=$_nmsg;
//设置图片长和高 
$_width=75;
$_height=25;
//创建一张图像
$_img=imagecreatetruecolor($_width,$_height); 
//白色背景
$_white=imagecolorallocate($_img,255,255,255);
//填充到背景上
imagefill($_img,0,0,$_white); 
//黑色边框
$_black=imagecolorallocate($_img,0,0,0);
imagerectangle($_img,0,0,$_width-1,$_height-1,$_black); 
//随即画出5个线条
for($i=0;$i<5;$i++)
{
$_rnd_color=imagecolorallocate($_img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));
imageline($_img,mt_rand(0,$_width),mt_rand(0,$_height),mt_rand(0,$_width),mt_rand(0,$_height),$_rnd_color);
} 
//雪花
for($i=0;$i<10;$i++)
{
$_rnd_color=imagecolorallocate($_img,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255));
imagestring($_img,1,mt_rand(1,$_width),mt_rand(1,$_height),"*",$_rnd_color);
} 
//输出验证码 
for($i=0;$i<strlen($_SESSION[&#39;code&#39;]);$i++)
{
imagestring($_img,5,10+$i*15,mt_rand(0,10),$_SESSION[&#39;code&#39;][$i],$_blackr);
} 
//输出图像
header(&#39;Content-Type:image/png&#39;);
imagepng($_img);
//销毁图像
imagedestroy($_img);
?>

The following will be used in the code Function:

mt_rand — Generate better random numbers

int mt_rand ([ int $min ], int $max ) Many old libc random number generators have some disadvantages Certain and unknown properties and very slow. PHP's rand() function uses the libc random number generator by default.

The mt_rand() function is informally used to replace it. This function uses the known features of Mersenne Twister as a random number generator, which can generate random values ​​​​on average four times faster than rand() provided by libc.

dechex — Decimal to hexadecimal conversion returns a string containing the hexadecimal representation of the given number argument. The maximum value that can be converted is 4294967295 in decimal, which results in "ffffffff".

imagecreatetruecolor — Create a new true color image.

resource imagecreatetruecolor ( int $x_size , int $y_size )

imagecreatetruecolor() Returns an image identifier representing a black image of size x_size and y_size.

imagecolorallocate — Assign a color to an image.

int imagecolorallocate ( resource $image , int $red , int $green , int $blue )

imagecolorallocate() Returns an identifier representing the color composed of the given RGB components . red, green and blue are the red, green and blue components of the desired color respectively. These parameters are integers from 0 to 255 or hexadecimal 0x00 to 0xFF. imagecolorallocate() must be called to create each color used in the image represented by image.

imagefill — Area filling.

bool imagefill ( resource $image , int $x , int $y , int $color )

imagefill() at the coordinates x, y of the image image (the upper left corner of the image is 0, 0 ) to perform area filling with the color color (that is, points with the same color as the x, y point and adjacent points will be filled).

imagerectangle — Draw a rectangle.

bool imagerectangle ( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int $col )

imagerectangle() Use col color to draw in the image image A rectangle has the coordinates of its upper left corner as x1, y1 and the coordinates of its lower right corner as x2, y2. The upper left corner of the image has coordinates 0, 0.

imageline — Draw a line segment.

bool imageline ( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int $color )

imageline() Use color color in the image image from Draw a line segment from coordinates x1, y1 to x2, y2 (the upper left corner of the image is 0, 0).

imagestring — Draw a line of string horizontally.

bool imagestring ( resource $image , int $font , int $x , int $y , string $s , int $col )

imagestring() Draw the string s with col color Go to the x, y coordinates of the image represented by image (this is the coordinate of the upper left corner of the string, and the upper left corner of the entire image is 0, 0). If font is 1, 2, 3, 4 or 5, the built-in font is used.

imagepng — Output an image in PNG format to a browser or file

imagepng() Output a GD image stream (image) in PNG format to standard output (usually a browser), or If a filename is given with filename then output to that file.

imagedestroy — Destroy an image

imagedestroy() Releases the memory associated with image.

Save the source code as code.php is a php file, how do we use it?

imagepng has output this php file into a png file

Just call it directly.

<img  src="/static/imghwm/default1.png"  data-src="mycode.php"  class="lazy"  / alt="What is the process of designing verification code in php" >

If you want to use the verification code, remember to open the session.

<?php
session_start();
echo $_SESSION[&#39;code&#39;];
?>

The above is the detailed content of What is the process of designing verification code in php. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),