Heim  >  Artikel  >  Backend-Entwicklung  >  php随机验证码 php生成随机验证码(图文)

php随机验证码 php生成随机验证码(图文)

WBOY
WBOYOriginal
2016-07-25 09:04:231217Durchsuche
  1. 验证码
  2. for($i = 0; $i $_md_color = imagecolorallocate($_img,mt_rand(0, 255),mt_rand(0, 255), mt_rand(0, 255));

  3. imageline($_img, mt_rand(0, 75), mt_rand(0, 75), mt_rand(0, 75), mt_rand(0, 75),$_md_color);
  4. }
  5. //随机雪花
  6. for($i = 0; $i $_md_color = imagecolorallocate($_img, mt_rand(200, 255), mt_rand(200, 255), mt_rand(200, 255));
  7. imagestring($_img, 1, mt_rand(1, $_width), mt_rand(1, $_height), '*', $_md_color);
  8. }
  9. //黑色边框
  10. $_black = imagecolorallocate($_img, 0, 0, 0);
  11. imagerectangle($_img, 0, 0, $_width-1, $_height-1, $_black);
  12. //输出验证码
  13. for($i = 0;$i $_mt_color = imagecolorallocate($_img, mt_rand(0, 100), mt_rand(0, 150), mt_rand(0, 200));
  14. imagestring($_img, mt_rand(3, 5), $i*$_width/4+mt_rand(1, 10), mt_rand(1, $_height/2), $_SESSION['code'][$i],$_mt_color);
  15. }
  16. header('Content-Type:image/png');
  17. imagepng($_img);
  18. //销毁
  19. imagedestroy($_img);
  20. ?>
复制代码


Stellungnahme:
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