


/****** 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// 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
$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{
$ 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.

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

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.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

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