Home Backend Development PHP Tutorial The idea and implementation code of generating SessionID and image verification code in php_PHP tutorial

The idea and implementation code of generating SessionID and image verification code in php_PHP tutorial

Jul 21, 2016 pm 03:47 PM
php session code and picture Basic accomplish Ideas check generate of code

/****** Generate Session ID ******/
The basic idea is to obtain the current microsecond time, then generate a random number, add the random number to the current time and encrypt it, and finally intercept the required length
/*
Function name: create_sess_id()
Function function: Generate a random session ID
Parameter: $len: The length of the session string is required, the default is 32 bits, not less than 16 Bit
Return value: Return session ID
Function author: heiyeluren
*/
function create_sess_id($len=32)
{
// Verify whether the submitted length is legal
if( !is_numeric($len) || ($len>32) || ($len<16)) { return; }
// Get the microseconds of the current time
list($u, $s) = explode(' ', microtime());
$time = (float)$u + (float)$s;
// Generate a random number
$rand_num = rand(100000 , 999999);
$rand_num = rand($rand_num, $time);
mt_srand($rand_num);
$rand_num = mt_rand();
// Generate SessionID
$sess_id = md5( md5($time). md5($rand_num) );
//Intercept the SessionID of the specified required length
$sess_id = substr($sess_id, 0, $len);
return $sess_id ;
}


/****** Generate verification code ******/
Idea: This idea is relatively simple, because considering uniqueness and randomness, our verification code intercepts a segment from the Session ID A string is fine because our SessionID is fully considered unique.

/*
Function name: create_check_code()
Function function: Generate a random check code
Parameters: $len: The length of the check code required, please not be longer than 16 digits, the default is 4 digits
Return value: Returns the check code of the specified length
Function author: heiyeluren
*/
function create_check_code($len=4)
{
if ( !is_numeric($len) || ($len>6) || ($len<1)) { return; }

$check_code = substr(create_sess_id(), 16, $len );
return strtoupper($check_code);
}


/****** Picture of generating verification code ******/

This is some relatively simple PHP image programming stuff. I made the pictures simple and simple.

/*
Function name: create_check_image()
Function function: generate a check code image
Parameters: $check_code: Check code string, generally used by create_check_code() function To get the
return value: return the image
Function author: heiyeluren
*/
function create_check_image( $check_code )
{
// Generate an image
$im = imagecreate(65,22);
$black = ImageColorAllocate($im, 0,0,0); // Background color
$white = ImageColorAllocate($im, 255,255,255); // Foreground color
$gray = ImageColorAllocate($im, 200,200,200);
imagefill($im,68,30,$gray);

// Draw the four-digit integer verification code into the image
imagestring($ im, 5, 8, 3, $check_code, $white);
//Add interference pixels
for($i=0;$i<200;$i++)
{
$ randcolor = ImageColorallocate($im,rand(0,255),rand(0,255),rand(0,255));
imagesetpixel($im, rand()%70 , rand()%30 , $randcolor);
}
//Output image
Header("Content-type: image/PNG");
ImagePNG($im);
ImageDestroy($im);
}

Here we should note that when referencing the create_check_image() function, it must be in a separate file, because the output format when outputting the file header is an image format, and mixed with other content, the image will not be displayed. In addition, you can change the image generation function. For example, if you want to change the color, then you change the generation positions of the foreground color and background color, then the colors will be different. At the same time, you also need to change the color of the check code. Change it, otherwise the background and check code will be black and will not be displayed.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/319940.htmlTechArticle/****** Generate Session ID ******/ The basic idea is to obtain the current microsecond time, and then generate the following A random number, add the random number to the current time, encrypt it, and finally intercept it...
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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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.

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 ?

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 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.

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.

See all articles