php生成动态图片验证码的一段代码

WBOY
Freigeben: 2016-07-25 09:03:16
Original
798 Leute haben es durchsucht
  1. session_start();
  2. function random($len)
  3. {
  4. $srCStr="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
  5. $strs="";
  6. for($i=0;$i {
  7. $strs.=$srCStr[mt_rand(0,35)];
  8. }
  9. return $strs;
  10. }
  11. $str=random(4); //随机生成的字符串
  12. $width = 50; //验证码图片的宽度
  13. $height = 25; //验证码图片的高度
  14. @header("Content-Type:image/png");
  15. $_SESSION["code"] = $str;
  16. $im = imagecreate($width,$height);
  17. //背景色
  18. $back = imagecolorallocate($im,0xFF,0xFF,0xFF);
  19. //模糊点颜色
  20. $pix = imagecolorallocate($im,187,230,247);
  21. //字体色
  22. $font = imagecolorallocate($im,41,163,238);
  23. //绘模糊作用的点
  24. for($i=0;$i {
  25. imagesetpixel($im,mt_rand(0,$width),mt_rand(0,$height),$pix);
  26. }
  27. imagestring($im, 5, 7, 5,$str, $font);
  28. imagerectangle($im,0,0,$width-1,$height-1,$font);
  29. imagepng($im);
  30. imagedestroy($im);
  31. $_SESSION["code"] = $str;
  32. ?>
复制代码

小结:自 PHP 4.2.0 起,不再需要用 srand()或 mt_srand() 函数给随机数发生器播种,现已自动完成。 您可能感兴趣的文章: php生成N个不重复的随机数 php随机生成4位数字验证码 php 随机显示图片的函数 php 随机显示图片的例子 php生成随机密码的范例 生成随机用户名与密码的php函数 用于批量生成随机用户名的php程序 用php随机生成福彩双色球号码的二种方法 用PHP生成随机数的函数 使用php生成一个随机字符串的代码 php生成随机数的例子 php生成随机字符串的函数 php随机密码生成函数 php生成随机密码的函数 PHP生成随机字符串的函数 php生成随机密码的函数 php生成随机密码的几种方法



Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage