PHP class to generate random strings and verification codes
This article mainly introduces PHP examples of classes that generate random strings and verification codes. Friends in need can refer to them.
There are many online There are few codes and articles about PHP random numbers and verification codes that are really applicable.
Just make one yourself.
Let’s start this section’s php tutorial. The implementation of the following code is mainly to distinguish one get_code() and the other create_check_image(). The output image directly calls the latter one. session() When getting the verification code, just get_code() is ok. By the way, when using session, you must put session_star() at the front.
The code is as follows:
<?php class RandCheckCode { /*函数名称:get_code() *作用:取得随机字符串 * 参数: 1、(int)$length = 32 #随机字符长度 2、(int)$mode = 0 #随机字符类型, 0为大小写英文和数字,1为数字,2为小写字母,3为大写字母, 4为大小写字母,5为大写字母和数字,6为小写字母和数字 *返回:取得的字符串 */ function get_code($length=32,$mode=0)//获取随机验证码函数 { switch ($mode) { case '1': $str='123456789'; break; case '2': $str='abcdefghijklmnopqrstuvwxyz'; break; case '3': $str='ABCDEFGHIJKLMNOPQRSTUVWXYZ'; break; case '4': $str='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; break; case '5': $str='ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'; break; case '6': $str='abcdefghijklmnopqrstuvwxyz1234567890'; break; default: $str='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890'; break; } $checkstr=''; $len=strlen($str)-1; for ($i=0;$i<$length;$i++) { //$num=rand(0,$len);//产生一个0到$len之间的随机数 $num=mt_rand(0,$len);//产生一个0到$len之间的随机数 $checkstr.=$str[$num]; } return $checkstr; } /** 函数名称:create_check_image() 函数作用:产生一个校验码的图片 参 数:$checkcode:校验码字符串 返 回 值:返回该图片 */ function create_check_image($checkcode)//产生一个 { $im=imagecreate(65,22);//产生一个图片 $black=imagecolorallocate($im,0,0,0);//背景颜色 $white=imagecolorallocate($im,255,255,255);//前景颜色 $gray=imagecolorallocate($im,200,200,200); imagefill($im,30,30,$gray);//在$im图像的坐标30,30(图像左上角为0,0)处用$gray 颜色执行区域填充(即与30,30点颜色相同且相邻的点都会被填充) imagestring($im,5,8,3,$checkcode,$white);//用$white颜色将字符串$checkcode画到$im 所代表的图像的8,3坐标处(这是字符串左上角坐标,整幅图像的左上角为0,0),5是字体大小, 字体只能是1,2,3,4或5,使用内置字体 for ($i=0;$i<120;$i++) { $randcolor=imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255)); imagesetpixel($im,rand()%70,rand()%30,$randcolor);//在$im图象上用$randcolor颜色在(rand()%70,rand()%30)坐标(图像左上角为0,0)上画一个点 } header("Content-type:image/png"); imagepng($im);//以PNG格式将图像输出到浏览器或文件 imagedestroy($im);//销毁图像$im } } /* $randcode=new RandCheckCode(); $checkstring=$randcode->get_code(5,7); $image=$randcode->create_check_image($checkstring); echo $image; */ ?>
The above is the detailed content of PHP class to generate random strings and verification codes. For more information, please follow other related articles on the PHP Chinese website!

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

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 this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

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

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

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

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

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

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

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
