文章目录[隐藏]
为了防止恶意登录和攻击网站,网站的登陆,注册很多地方都增加了验证码功能,实现的语言有多种,今天主要分享php纯代码生成的图片验证码,数组字母随机生成,代码非常精炼,如果你自己在用PHP开发网站,可以借鉴一下。
注意
验证码的实现需要GD库的支持,没有开启GD库的需开启GD库。
<?php //创建验证码底图,宽高自己定义设置 $image = imagecreatetruecolor(100, 30); // 创建一个宽为 100 高为 30 的底图 该底图的背景色 为黑色 是系统定义的 $bgcolor = imagecolorallocate($image, 255, 255, 255); // 为上面创建的底图分配 白色的背景颜色 imagefill($image, 0, 0, $bgcolor); // 填充白色背景色 ; // 显示验证码内容,输出验证码内容 for ($i=0; $i < 4; $i++) { $fontsize = 6; $fontcolor = imagecolorallocate($image, rand(0,120), rand(0,120), rand(0,120)); $data = 'qwertyuipkjhgfdsazxcvbnm23456789'; $content = substr($data, rand(0, strlen($data)), 1); $x = ($i*100/4) + rand(5,9); $y = rand(5,10); imagestring($image, $fontsize, $x, $y, $content, $fontcolor); //在图像上水平输出一行字符串 } // 增加干扰点元素,提高识别难度 for ($i=0; $i < 300; $i++) { $pointcolor = imagecolorallocate($image, rand(50,200), rand(50,200), rand(50,200)); imagesetpixel($image, rand(0,99), rand(0,29), $pointcolor); } // 增加干扰线元素 线 和 点 的颜色一定要控制好 要比验证码数字的颜色浅 避免出现验证码数字看不见的现象 for ($i=0; $i < 4; $i++) { $linecolor = imagecolorallocate($image, rand(100,240), rand(100,240), rand(100,240)); imageline($image, rand(0,99), rand(0,29), rand(0,99), rand(0,29), $linecolor); } // 输出创建的图像 在输出图像之前 必须输出头信息 用来规定输出的图像类型 header("Content-Type: image/png"); imagepng($image); // 销毁图像,释放内存 imagedestroy($image); ?>
代码非常简单,很多功能还不完善,可以看着注释借鉴一下,使用验证码的时候,我们一般都需要用session来保存以便验证,还可以封装成函数,调用方便,这里就不多多啰嗦了。