当前位置:首页 > PHP教程 > php图像处理 > 列表

PHP验证码生成原理和实现

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-07 10:26:07 浏览: 评论:0 

验证码在表单实现越来越多了,但是用js的写的验证码,总觉得不方便,所以学习了下php实现的验证码。好吧,其实是没有事情干,但是又不想浪费时间,所以学习了下php实现验证码。正所谓,技多不压身。而且,也可以封装成一个函数,以后使用的时候也是很方便的,当然现在未封装。

由于注册的时候常常会用到注册码来防止机器恶意注册,这里我发表一个产生png图片验证码的基本图像,很简陋但思想很清晰:

1、产生一张png的图片

2、为图片设置背景色

3、设置字体颜色和样式

4、产生4位数的随机的验证码

5、把产生的每个字符调整旋转角度和位置画到png图片上

6、加入噪点和干扰线防止注册机器分析原图片来恶意注册

7、输出图片

8、释放图片所占内存

authcode.php文件

代码:

  1. <?php 
  2. session_start (); 
  3. header ( 'Content-type: image/png' ); 
  4. //创建图片 
  5. $im = imagecreate($x=130,$y=45 ); 
  6. $bg = imagecolorallocate($im,rand(50,200),rand(0,155),rand(0,155)); //第一次对 imagecolorallocate() 的调用会给基于调色板的图像填充背景色 
  7. $fontColor = imageColorAllocate ( $im, 255, 255, 255 ); //字体颜色 
  8. $fontstyle = 'rock.ttf'//字体样式,这个可以从c:\windows\Fonts\文件夹下找到,我把它放到和authcode.php文件同一个目录,这里可以替换其他的字体样式 
  9. //产生随机字符 
  10. for($i = 0; $i < 4; $i ++) { 
  11. $randAsciiNumArray = array (rand(48,57),rand(65,90)); 
  12. $randAsciiNum = $randAsciiNumArray [rand ( 0, 1 )]; 
  13. $randStr = chr ( $randAsciiNum ); 
  14. imagettftext($im,30,rand(0,20)-rand(0,25),5+$i*30,rand(30,35),$fontColor,$fontstyle,$randStr); 
  15. $authcode .= $randStr;  
  16. $_SESSION['authcode'] = $randFourStr;//用户和用户输入的验证码做比较 
  17. //干扰线 
  18. for ($i=0;$i<8;$i++){ 
  19. $lineColor = imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255)); 
  20. imageline ($im,rand(0,$x),0,rand(0,$x),$y,$lineColor); 
  21. //干扰点 
  22. for ($i=0;$i<250;$i++){ 
  23. imagesetpixel($im,rand(0,$x),rand(0,$y),$fontColor); 
  24. imagepng($im); 
  25. imagedestroy($im);  
  26. ?> 

以上是针对PHP验证码生成原理和实现的相关知识,希望对大家有所帮助。

Tags: PHP验证码

分享到: