Home  >  Article  >  Backend Development  >  PHP implements login verification code verification function php example

PHP implements login verification code verification function php example

jacklove
jackloveOriginal
2018-06-23 16:14:571561browse

This article mainly introduces the verification code verification function in PHP in detail. It is mainly implemented by using the SESSION function in PHP. It has certain reference value. Interested friends can refer to it

The verification code is verified by using the SESSION function in PHP.

Declare the function at the top session_start(); Tell the server that we want to use this function.

session_start();

The next thing we use is the code to implement the verification code. Here we use English numeric codes as an example.

$image = imagecreatetruecolor(100, 30); //创建一个100×30的画布
$white = imagecolorallocate($image,255,255,255);//白色
imagefill($image,0,0,$white);//覆盖黑色画布

Then declare an empty variable before the verification code is implemented to store the verification code.

$session = ""; //空变量 ,存放验证码
for($i=0;$i<4;$i++){
 $size = 6;
 $x = $i*25+mt_rand(5,10);
 $y = mt_rand(5,10);
 $sizi_color = imagecolorallocate($image,mt_rand(80,220),mt_rand(80,220),mt_rand(80,220));
 $char = join("",array_merge(range('a','z'),range('A','Z'),range(0,9)));
 $char = str_shuffle($char);
 $char = substr($char,0,1);
 imagestring($image,$size,$x,$y,$char,$sizi_color);
 $session .= $char ; //把验证码的每一个值赋值给变量
}
 $_SESSION['session'] = $session; //这个变量的值与用户输入的值相等

for($k=0;$k<200;$k++){
 $rand_color = imagecolorallocate($image,mt_rand(50,200),mt_rand(50,200),mt_rand(50,200));
 imagesetpixel($image,mt_rand(1,99),mt_rand(1,29),$rand_color);
}
for($n=0;$n<5;$n++){
 $line_color = imagecolorallocate($image,mt_rand(80,220),mt_rand(80,220),mt_rand(80,220));
 imageline($image,mt_rand(1,99),mt_rand(1,29),mt_rand(1,99),mt_rand(1,29),$line_color);
}
header('content-type:image/png');//设置文件输出格式
imagepng( $image ); //以png格式输出$image图像
imagedestroy( $image ); //销毁图像

Use POST method to receive verification code. The strtolower function makes the server case-insensitive. This can effectively reduce the user's input error rate.

if(isset($_POST['session'])){
 session_start();
 if(strtolower($_POST['session'])==strtolower($_SESSION['session'])){
  echo'输入正确';
 }else{
  echo '输入错误';
 }
 exit();
}

The following is the HTML page code.




 
 确认验证码


 

验证码图片:

看不清?换一个

请输入图片中的验证码:

Summary

The above is the PHP implementation introduced by the editor Login verification code verification function, I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank you all for your support of the php Chinese website!

Articles you may be interested in:

How to use Composer to install ThinkPHP5 in a windows environment

PHP generates the relevant content of the request signature required by Tencent Cloud COS interface

PHP access database configuration general method (json) Qiao

The above is the detailed content of PHP implements login verification code verification function php example. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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