php實作簡單的圖片驗證碼

WBOY
發布: 2016-07-25 08:46:15
原創
1104 人瀏覽過

这是最简单的图片验证码:

image.php

  1. header("Content-type: image/png");
  2. $string = "abcdefghijklmnopqrstuvwxyz0123456789";
  3. for($i=0;$i<6;$i ){
  4. $pos = rand(0,36);
  5. $str .= $string{$pos};
  6. }
  7. $img_handle = ImageCreate (60, 20) or die ("Cannot Create image");
  8. //Image size (x,y)
  9. $back_color = ImageColorAllocate($img_handle, 255, 255, 255);
  10. //Background color RBG
  11. $txt_color = ImageColorAllocate($img_handle, 0, 0, 0);
  12. //Text Color RBG
  13. ImageString($img_handle, 31, 5, 0, $str, $txt_color);
  14. Imagepng($img_handle);
  15. session_start();
  16. $_SESSION['img_number'] = $str;
  17. ?>
复制代码

form.php
  1. php实现简单的图片验证码
  2. 更多 0
  3. php
  4. 验证码
  5. 这是最简单的图片验证码:
  6. image.php
  7. header("Content-type: image/png");
  8. $string = "abcdefghijklmnopqrstuvwxyz0123456789";
  9. for($i=0;$i<6;$i ){
  10. $pos = rand(0,36);
  11. $str .= $string{$pos};
  12. }
  13. $img_handle = ImageCreate (60, 20) or die ("Cannot Create image");
  14. //Image size (x,y)
  15. $back_color = ImageColorAllocate($img_handle, 255, 255, 255);
  16. //Background color RBG
  17. $txt_color = ImageColorAllocate($img_handle, 0, 0, 0);
  18. //Text Color RBG
  19. ImageString($img_handle, 31, 5, 0, $str, $txt_color);
  20. Imagepng($img_handle);
  21. session_start();
  22. $_SESSION['img_number'] = $str;
  23. ?>
  24. form.php
  25. Random Number

复制代码

result.php

  1. session_start();
  2. if($_SESSION['img_number'] != $_POST['num']){
  3. echo'The number you entered doesn't match the image.
  4. Try Again
    ';
  5. }else{
  6. echo'The numbers Match!
  7. Try Again
    ';
  8. }
  9. ?>
复制代码


驗證碼, php


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板