phpで検証コードを生成する例

WBOY
リリース: 2016-07-25 09:04:24
オリジナル
987 人が閲覧しました
  1. ;
  2. index.html
  3. < ;img id="imgcode" src="VerifyCode.php" alt="验证码" />
  4. 見る不清?换一个
复制代

2、verifycode.php

  1. /*
  2. 图片验证码 Powered By KASON テスト http://bbs.it- home.org */
  3. session_start();
  4. $num=4;//验证码个数
  5. $width=80;//验证码宽度
  6. $height=20;//验证码高さ
  7. $code=' ';
  8. for ($i=0;$i {
  9. switch(rand(0,2))
  10. {
  11. case 0:$code[$i]=chr(rand(48) ,57));break;//数字
  12. case 1:$code[$i]=chr(rand(65,90));break;//大写字母
  13. case 2:$code[$i]=chr( rand(97,122));break;//小写字母
  14. }
  15. }
  16. $_SESSION["VerifyCode"]=$code;
  17. $image=imagecreate($width,$height);
  18. imagecolorallocate($image,255,255,255);
  19. for($i=0;$i {
  20. $dis_color=imagecolorallocate($image,rand(0,2555),rand(0,255),rand(0,255));
  21. imagesetpixel($image,rand(1,$width),rand(1,$height),$dis_color);
  22. }
  23. for($i=0;$i<$num;$i++)// 打符に画像
  24. {
  25. $char_color=imagecolorallocate($image,rand(0,2555),rand(0,255),rand(0,255));
  26. imagechar($image,60,($width/$num)*$i,rand (0,5),$code[$i],$char_color);
  27. }
  28. header("Content-type:image/png");
  29. imagepng($image);// 出射画像到浏览器
  30. imagedestroy( $image);//释放资源
  31. ?>
复制代码

3、checkcode.php

  1. ini_set('display_errors', 'Off') ;
  2. session_start();
  3. if((strtoupper($_POST["code"])) == strtoupper(($_SESSION["VerifyCode"]))){
  4. print("验证码正确,");
  5. } else{
  6. print("验证码错误,");
  7. }
  8. echo "提交的验证码:".strtoupper($_POST["code"]).",正确的验证:".strtoupper($_SESSION[ "VerifyCode"]);
  9. ?>
复制發


関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート