


A simple example of generating verification code with PHP, php verification code example_PHP tutorial
Jul 12, 2016 am 08:49 AMA simple example of PHP generating verification code, PHP verification code example
You will know it after reading it, you won’t hit me, don’t talk much, let’s do it ( People don’t talk much)
1.0 First look at the code
<?php header("Content-Type:text/html;Charset=UTF-8");// 設(shè)置頁面的編碼風(fēng)格 header("Content-Type:image/jpeg");// 通知瀏覽器輸出的是jpeg格式的圖像 $img = imagecreatetruecolor(150,50);//創(chuàng)建畫布并設(shè)置大小 x軸150 y軸50 $bgcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));//分配背景顏色 imagefill($img, 0, 0, $bgcolor); ////把背景填充到圖像 imagejpeg($img); // 輸出圖像 imagedestroy($img); // 銷毀圖像 ?>
Okay, now combine the above code to analyze the functions used above:
① imagecreatetruecolor();
imagecreatetruecolor — Create a new true color image (it feels so long, but it’s actually easy to remember if you look carefully image/create/true/color, what is a true color image? Read on)
resource imagecreatetruecolor ( int $width , int $height )
Both functions imagecreatetruecolor() and imagecreate() can create canvases
resource imagecreate ( int $x_size , int $y_size )
imagecreatetruecolor() creates a black image with size x and y (the default is black [even if it is called a true color image]), if you want to change the background color, you need to use the fill color Function imagefill($img,0,0,$color);
imagecreate creates a new blank image resource and uses imagecolorAllocate() to add a background color
The above two functions are just two methods of the same function
② imagecolorallocate();
imagecolorallocate — Assign a color to an image
int imagecolorallocate ( resource $image , int $red , int $green , int $blue )
The colors are a combination of red, green and blue. These parameters are integers from 0 to 255 or hexadecimal 0x00 to 0xFF.
③ mt_rand();
mt_rand — generate better random numbers
int mt_rand ( int $min , int $max )
$min Optional, the minimum value returned (default: 0) $max Optional, the maximum value returned (default: mt_getrandmax())
This is used to randomly generate the background color, with any value from 0-255. Therefore, the canvas background color is different even if the page is refreshed.
Rendering:
2.0 Start making interference lines and interference points inside. Prevent verification images from being recognized in seconds
<?php header("Content-Type:text/html;Charset=UTF-8");// 設(shè)置頁面的編碼風(fēng)格 header("Content-Type:image/jpeg");// 通知瀏覽器輸出的是jpeg格式的圖像 $img = imagecreatetruecolor(150,50);//創(chuàng)建畫布并設(shè)置大小 x軸150 y軸50 $bgcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));//分配背景顏色 //添加干擾線,并循環(huán)3次,背景顏色隨機(jī) for($i=0;$i<3;$i++){ $linecolor = imagecolorallocate($img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)); imageline($img, mt_rand(0,150), mt_rand(0,50), mt_rand(0,150), mt_rand(0,50), $linecolor); } //添加干擾點(diǎn),并循環(huán)25次,背景顏色隨機(jī) for($i=0;$i<25;$i++){ $dotcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255)); imagesetpixel($img, mt_rand(0,150), mt_rand(0,60), $dotcolor); } imagefill($img, 0, 0, $bgcolor); ////把背景填充到圖像 imagejpeg($img); // 輸出圖像 imagedestroy($img); // 銷毀圖像 ?>
Function analysis:
① imageline();
imageline — draw a line segment
bool imageline ( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int $color )
imageline() draws a line segment in the image image from coordinates x1, y1 to x2, y2 (the upper left corner of the image is 0, 0) using color color.
imageline($img, mt_rand(0,150), mt_rand(0,50), mt_rand(0,150), mt_rand(0,50), $linecolor); This means from coordinates x1, y1 to x2 in canvas $img ,y2random
② imagesetpixel();
imagesetpixel—draw a single pixel
bool imagesetpixel ( resource $image , int $x , int $y , int $color )imagesetpixel() uses the color color in the image image to draw a point on the x, y coordinates (the upper left corner of the image is 0, 0) .
imagesetpixel($img, mt_rand(0,150), mt_rand(0,60), $dotcolor); The specific meaning is the same as above. Rendering:
3.0 Add verification alphanumeric
<?php header("Content-Type:text/html;Charset=UTF-8");// 設(shè)置頁面的編碼風(fēng)格 header("Content-Type:image/jpeg");// 通知瀏覽器輸出的是jpeg格式的圖像 $img = imagecreatetruecolor(150,50);//創(chuàng)建畫布并設(shè)置大小 x軸150 y軸50 $bgcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));//分配背景顏色 //添加干擾線,并循環(huán)3次,背景顏色隨機(jī) for($i=0;$i<3;$i++){ $linecolor = imagecolorallocate($img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)); imageline($img, mt_rand(0,150), mt_rand(0,50), mt_rand(0,150), mt_rand(0,50), $linecolor); } //添加干擾點(diǎn),并循環(huán)25次,背景顏色隨機(jī) for($i=0;$i<25;$i++){ $dotcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255)); imagesetpixel($img, mt_rand(0,150), mt_rand(0,60), $dotcolor); } //添加需要驗(yàn)證的字母或者數(shù)字 $rand_str = "qwertyuiopasdfghjklzxcvbnm1234567890";//需要使用到驗(yàn)證的一些字母和數(shù)字 $str_arr = array(); //命名一個數(shù)組 for($i = 0;$i<4;$i++){ //循環(huán)4次,就是有四個隨機(jī)的字母或者數(shù)字 $pos = mt_rand(0,strlen($rand_str)-1); $str_arr[] = $rand_str[$pos];//臨時交換 } $x_start=150/4;//單個字符X軸位置 foreach ($str_arr as $key) { $fontcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255)); imagettftext($img, 25, mt_rand(-15,15), $x_start, 50/2, $fontcolor, "C:/Windows/Fonts/Verdana.TTF", $key); $x_start +=20;//遍歷后單個字符沿X軸 +20 } imagefill($img, 0, 0, $bgcolor); ////把背景填充到圖像 imagejpeg($img); // 輸出圖像 imagedestroy($img); // 銷毀圖像 ?>
Function:
imagettftext();
imagettftext — Write text to an image using TrueType fonts
array imagettftext ( resource $image , float $size , float $angle , int $x , int $y , int $color , string $fontfile , string $text )
Analyze the following code:
imagettftext($img, 25, mt_rand(-15,15), $x_start, 50/2, $fontcolor, "C:/Windows/Fonts/Verdana.TTF", $key);
$img----------canvas
25----------The size of the font.
mt_rand(-15,15)----------The angle expressed in the angle system, 0 degrees means text read from left to right. Higher values ??indicate counterclockwise rotation. For example, 90 degrees represents text that reads from bottom to top. (It’s just a matter of font angle,)
$x_start----------In simple terms, it is the X-axis position of the character
50/2----------Character height
$fontcolor----------Character color
"C:/Windows/Fonts/Verdana.TTF"----------Character font style path
$key----------traverse the following characters
Effect:
Looks pretty cute.
The above simple example of generating a verification code with PHP is all the content shared by the editor. I hope it can give you a reference, and I also hope that everyone will support Bangkejia.

Hot AI Tools

Undress AI Tool
Undress images for free

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

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

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In PHP, you can use square brackets or curly braces to obtain string specific index characters, but square brackets are recommended; the index starts from 0, and the access outside the range returns a null value and cannot be assigned a value; mb_substr is required to handle multi-byte characters. For example: $str="hello";echo$str[0]; output h; and Chinese characters such as mb_substr($str,1,1) need to obtain the correct result; in actual applications, the length of the string should be checked before looping, dynamic strings need to be verified for validity, and multilingual projects recommend using multi-byte security functions uniformly.

AgeneratorinPHPisamemory-efficientwaytoiterateoverlargedatasetsbyyieldingvaluesoneatatimeinsteadofreturningthemallatonce.1.Generatorsusetheyieldkeywordtoproducevaluesondemand,reducingmemoryusage.2.Theyareusefulforhandlingbigloops,readinglargefiles,or

To prevent session hijacking in PHP, the following measures need to be taken: 1. Use HTTPS to encrypt the transmission and set session.cookie_secure=1 in php.ini; 2. Set the security cookie attributes, including httponly, secure and samesite; 3. Call session_regenerate_id(true) when the user logs in or permissions change to change to change the SessionID; 4. Limit the Session life cycle, reasonably configure gc_maxlifetime and record the user's activity time; 5. Prohibit exposing the SessionID to the URL, and set session.use_only

The urlencode() function is used to encode strings into URL-safe formats, where non-alphanumeric characters (except -, _, and .) are replaced with a percent sign followed by a two-digit hexadecimal number. For example, spaces are converted to signs, exclamation marks are converted to!, and Chinese characters are converted to their UTF-8 encoding form. When using, only the parameter values ??should be encoded, not the entire URL, to avoid damaging the URL structure. For other parts of the URL, such as path segments, the rawurlencode() function should be used, which converts the space to . When processing array parameters, you can use http_build_query() to automatically encode, or manually call urlencode() on each value to ensure safe transfer of data. just

You can use substr() or mb_substr() to get the first N characters in PHP. The specific steps are as follows: 1. Use substr($string,0,N) to intercept the first N characters, which is suitable for ASCII characters and is simple and efficient; 2. When processing multi-byte characters (such as Chinese), mb_substr($string,0,N,'UTF-8'), and ensure that mbstring extension is enabled; 3. If the string contains HTML or whitespace characters, you should first use strip_tags() to remove the tags and trim() to clean the spaces, and then intercept them to ensure the results are clean.

There are two main ways to get the last N characters of a string in PHP: 1. Use the substr() function to intercept through the negative starting position, which is suitable for single-byte characters; 2. Use the mb_substr() function to support multilingual and UTF-8 encoding to avoid truncating non-English characters; 3. Optionally determine whether the string length is sufficient to handle boundary situations; 4. It is not recommended to use strrev() substr() combination method because it is not safe and inefficient for multi-byte characters.

To set and get session variables in PHP, you must first always call session_start() at the top of the script to start the session. 1. When setting session variables, use $_SESSION hyperglobal array to assign values ??to specific keys, such as $_SESSION['username']='john_doe'; it can store strings, numbers, arrays and even objects, but avoid storing too much data to avoid affecting performance. 2. When obtaining session variables, you need to call session_start() first, and then access the $_SESSION array through the key, such as echo$_SESSION['username']; it is recommended to use isset() to check whether the variable exists to avoid errors

You can use WeChat to not bind your mobile phone number, but you need to bypass the default registration process. 1. Select the email instead of your mobile phone number when registering, and verify the email number; 2. Log in through your existing QQ or Weibo account, and you may not need a mobile phone number; 3. Use the "Device Transfer" function to log in on a new device and skip to re-verify your mobile phone number; 4. Log in through the desktop version, provided that the existing device is logged in; 5. Use a virtual number to receive verification code, but may be restricted. Although it can temporarily evade mobile phone verification, some functions still need to bind mobile phone numbers in the future.
