程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP驗證碼在驗證頁面中的應用分析

PHP驗證碼在驗證頁面中的應用分析

編輯:關於PHP編程

對於一個網站來說,肯定會需要一個提供驗證功能的頁面。那麼我們現在就需要考慮驗證頁面中的驗證碼的應用了。我們接下來將要為大家具體講解有關一、准備一個展示並提交PHP驗證碼的頁面

  1. <?php    
  2.     
  3.     @header("content-type:text/html; charset=UTF-8");     
  4.     
  5.     //打開session     
  6.     
  7.     session_start();     
  8.     
  9. ?>    
  10.     
  11. <html>    
  12.     
  13.     <head>    
  14.     
  15.        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    
  16.     
  17.        <title>PHP驗證碼示例</title>    
  18.     
  19.     </head>    
  20.     
  21.     <body>    
  22.     
  23.        驗證碼:<br/>    
  24.     
  25.        <iframe id="iimg" height="100" width=300 src="img.php" frameborder="0" ></iframe>    
  26.     
  27.        <br/>    
  28.     
  29.        <input type=button value="看不清,換一張" onclick="iimg.location.reload();">    
  30.     
  31.        <br>    
  32.     
  33.        <form action="validate.php" method="post">    
  34.     
  35.            輸入驗證碼:<input name="imgId" style="width:60">    
  36.     
  37.            <input type="submit" value="確定">    
  38.     
  39.        </form>    
  40.     
  41.     </body>    
  42.     
  43. </html>   

二、以下是PHP驗證碼生成頁面,該頁面在第一頁面中被<img>調用

  1. <?php    
  2.     
  3. Header("Content-type: image/gif");     
  4.     
  5. session_start();     
  6.     
  7. //驗證碼為隨機字符,以下是算法     
  8.     
  9. $randval;     
  10.     
  11. for($i=0;$i<7;$i++){     
  12.     
  13.     $randstr = mt_rand(ord('A'),ord('Z'));     
  14.     
  15.     srand((double)microtime()*1000000);     
  16.     
  17.     $randv = mt_rand(0,10);     
  18.     
  19.     if($randv%2==0){     
  20.     
  21.        $randval.=mt_rand(0,10);     
  22.     
  23.     }else{     
  24.     
  25.        $randval.=chr($randstr);     
  26.     
  27.     }     
  28.     
  29. }     
  30.     
  31. //注冊PHP驗證碼到session     
  32.     
  33. session_register($randval);     
  34.     
  35. //以下是繪制驗證碼圖     
  36.     
  37. $height = 50;//圖高     
  38.     
  39. $width = 100;//圖寬     
  40.     
  41. $im = ImageCreateTrueColor($width, $height);     
  42.     
  43. $white = ImageColorAllocate($im, 255, 255, 255);     
  44.     
  45. $blue = ImageColorAllocate($im, 0, 0, 64);     
  46.     
  47. ImageFill($im, 0, 0, $white);     
  48.     
  49. srand((double)microtime()*1000000000);     
  50.     
  51. ImageLine($im, mt_rand(0,$width/3), mt_rand(0,$height/3), mt_rand($width/3,$width), mt_rand($height/3,$height), $blue);     
  52.     
  53. srand((double)microtime()*1000000);     
  54.     
  55. ImageLine($im, mt_rand($width/3,$width), mt_rand(0,$height/3), mt_rand(0,$width/3), mt_rand(0,$height/3), $blue);     
  56.     
  57. srand((double)microtime()*1000000);     
  58.     
  59. ImageString($im,16 , mt_rand(0,$width - strlen($randval) * 10), mt_rand(0,$height-12), $randval, $blue);     
  60.     
  61. ImageGIF($im);     
  62.     
  63. ImageDestroy($im);     
  64.     
  65. /*     
  66.     
  67. 需要注意的是:為了支持以上繪圖函數,我們必須在PHP載入GD2圖形處理庫,可修改 php.ini 文件中的     
  68.     
  69. ;extension=php_gd2.dll     
  70.     
  71. 為     
  72.     
  73. extension=php_gd2.dll     
  74.     
  75. 即開啟GD2庫     
  76.     
  77. */     
  78.     
  79. ?>    

三、這是驗證頁面,提示PHP驗證碼是否通過驗證

  1. <?php @header("content-type:text/html; charset=UTF-8");     
  2.     
  3.     //開啟session     
  4.     
  5.     session_start();     
  6.     
  7.     //得到用戶輸入的驗證碼,並轉換成大寫     
  8.     
  9.     $imgId_req = $_REQUEST['imgId'];     
  10.     
  11.     $imgId_req = strtoupper($imgId_req);     
  12.     
  13.     //驗證該字符串是否注冊了session變量     
  14.     
  15.     if (session_is_registered($imgId_req)) {     
  16.     
  17.        echo "<font color=blue >通過驗證!</font>";     
  18.     
  19.     } else {     
  20.     
  21.        echo "<font color=red >驗證錯誤!</font>";     
  22.     
  23.     }     
  24.     
  25.     //關閉session,以清除所有注冊過的變量     
  26.     
  27.     session_destroy();     
  28.     
  29. ?>    

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved