Verification codes are usually used to ensure that our website registration or login is not injected, but in order to be more secure, we usually generate some mixed verification codes. Let’s take a look at an example.
When we develop the login module or the forum irrigation module, in order to prevent malicious submissions, we need to use verification codes. Verification codes are a means of distinguishing people from machines. Of course, this method is not foolproof, but It will play some role after all.
The implementation of the verification code requires the support of the GD library. Children's shoes that do not have the GD library need to enable the GD library. In fact, the production and use of the verification code is very simple. It only requires 4 steps: Create a verification code base image , display the content of the verification code, add interference elements, and output the verification code. Let’s split the steps:
Step one: Create verification code base image
$image = imagecreatetruecolor(100, 30); // 创建一个宽为 100 高为 30 的底图 该底图的背景色 为黑色 是系统定义的 $bgcolor = imagecolorallocate($image, 255, 255, 255); // 为上面创建的底图分配 白色的背景颜色 imagefill($image, 0, 0, $bgcolor); // 填充白色背景色
Step 2: Display the verification code content
// 输出验证码内容 for ($i=0; $i < 4; $i++) { $fontsize = 6; $fontcolor = imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120)); $data = 'qwertyuipkjhgfdsazxcvbnm23456789'; $content = substr($data, rand(0, strlen($data)), 1); $x = ($i*100/4) + rand(5,9); $y = rand(5,10); imagestring($image, $fontsize, $x, $y, $content, $fontcolor); //在图像上水平输出一行字符串 }
Step 3: Add disturbing elements
// 增加干扰点元素 for ($i=0; $i < 300; $i++) { $pointcolor = imagecolorallocate($image, rand(50,200), rand(50,200), rand(50,200)); imagesetpixel($image, rand(0,99), rand(0,29), $pointcolor); } //开源软件:phpfensi.com // 增加干扰线元素 线 和 点 的颜色一定要控制好 要比验证码数字的颜色浅 避免出现验证码数字看不见的现象 for ($i=0; $i < 4; $i++) { $linecolor = imagecolorallocate($image, rand(100,240), rand(100,240), rand(100,240)); imageline($image, rand(0,99), rand(0,29), rand(0,99), rand(0,29), $linecolor); }
Step 4: Enter the verification code
// 输出创建的图像 在输出图像之前 必须输出头信息 用来规定输出的图像类型 header("Content-Type: image/png"); imagepng($image); // 销毁图像 imagedestroy($image);
At this point, a simple verification code has been implemented. Notes on implementing the verification code have been written in the comments. When using the verification code, we generally need to use a session to save it for verification, so we will not go into details here. introduce.
The above is the PHP verification code generation code. The important code has been commented. You can study the comment content carefully, it is also very important. I hope you can gain something

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

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
