当前位置:首页 > PHP教程 > php应用 > 列表

简单实例php验证码代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-17 17:24:05 浏览: 评论:0 

验证码,是一种区分用户是计算机和人的公共全自动程序,在captcha测试中,作为服务器的计算机会自动生成一个问题由用户来解答,这个问题可以由计算机生成并评判,但是必须只有人类才能解答,由于计算机无法解答captcha的问题,所以回答出问题的用户就可以被认为是人类,php实例代码如下:

  1. */ 
  2. session_start(); 
  3. $string = null; 
  4. $im = imagecreatetruecolor(60,25);  //创建真彩图60*25 
  5. $bg = imagecolorallocate($im,255,255,255);//白色背景 
  6. imagefill($im,0,0,$bg);填充白色 
  7. $x = 5;// 
  8. $y = 0;//文字坐标 
  9. for($i=0 ; $i<4 ;$i++) 
  10. {//开源代码phpfensi.com 
  11. $char = mt_rand(0,9); 
  12. $string .=$char
  13. $y = mt_rand(0,10); 
  14. $ccolor = imagecolorallocate($im,mt_rand(0,230),mt_rand(0,230),mt_rand(0,230)); 
  15. imagechar($im,6,$x,$y,$char,$ccolor);//填充文字 
  16. $x += mt_rand(10,15); 
  17. for($i=0 ;$i 
  18. $x1 = mt_rand(0,80); 
  19. $x2 = mt_rand(0,80); 
  20. $y1 = mt_rand(0,30); 
  21. $y2 = mt_rand(0,30); 
  22. $x2 = $x1 +mt_rand(1,5); 
  23. $y2 = $y1 +mt_rand(1,5); 
  24. $lc = imagecolorallocate($im,mt_rand(0,230),mt_rand(0,230),mt_rand(0,230)); 
  25. imageline($im,$x1,$y1,$x2,$y2,$lc);//填充线条 
  26. $_session['code'] = md5($string); 
  27. header("content-type:image/jpeg"); 
  28. imagepng($im); 
  29. imagedestroy($im); 

Tags: php验证码 实例代码

分享到: