php隨機驗證碼 php產生隨機驗證碼(圖文)

WBOY
發布: 2016-07-25 09:04:23
原創
1168 人瀏覽過
  1. 验证码
  2. for($i = 0; $i<6; $i++){

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

复制代码


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!