验证码的校验是利用PHP中的 SESSION功能来实现。
在最顶端声明函数 session_start(); 告诉服务器我们要用这个函数的功能。
1
|
session_start(); |
接下来我们用到的就是验证码实现的代码。这里用英文数字的代码为例。
1
2
3
|
$image = imagecreatetruecolor(100, 30); //创建一个100×30的画布 $white = imagecolorallocate( $image ,255,255,255); //白色 imagefill( $image ,0,0, $white ); //覆盖黑色画布 |
然后在验证码实现之前声明一个空变量,用来存放验证码。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$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 ; //这个变量的值与用户输入的值相等 |
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 ); //销毁图像 |
用 POST 方式来接收验证码。 strtolower 函数是让服务器不区分大小写。这样可以有效减少用户的输错率。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容