程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php利用驗證碼防止惡意注冊學習筆記

php利用驗證碼防止惡意注冊學習筆記

編輯:關於PHP編程

     今天我們來研究下PHP驗證碼,我們通過簡單的數字驗證碼來實現,首先來寫一個生成驗證碼的代碼:

     代碼如下  

    <?php

    //隨機生成一個4位數的數字驗證碼

    $num=”";     for($i=0;$i<4;$i++){     $num .= rand(0,9);     }

    //4位驗證碼也可以用rand(1000,9999)直接生成

    //將生成的驗證碼寫入session,備驗證頁面使用

    Session_start();     $_SESSION["Checknum"] = $num;

    //創建圖片,定義顏色值     Header(“Content-type: image/PNG”);

    srand((double)microtime()*1000000);

    $im = imagecreate(60,20);

    $black = ImageColorAllocate($im, 0,0,0);

    $gray = ImageColorAllocate($im, 200,200,200);

    imagefill($im,0,0,$gray);

    //隨機繪制兩條虛線,起干擾作用

    $style = array($black, $black, $black, $black, $black, $gray, $gray, $gray, $gray, $gray);

    imagesetstyle($im, $style);

    $y1=rand(0,20);     $y2=rand(0,20);     $y3=rand(0,20);     $y4=rand(0,20);

    imageline($im, 0, $y1, 60, $y3, IMG_COLOR_STYLED);

    imageline($im, 0, $y2, 60, $y4, IMG_COLOR_STYLED)

    //在畫布上隨機生成大量黑點,起干擾作用;

    for($i=0;$i<80;$i++)     {

    imagesetpixel($im, rand(0,60), rand(0,20), $black);     }

    //將四個數字隨機顯示在畫布上,字符的水平間距和位置都按一定波動范圍隨機生成

    $strx=rand(3,8);

    for($i=0;$i<4;$i++){

    $strpos=rand(1,6);     imagestring($im,5,$strx,$strpos, substr($num,$i,1), $black);     $strx+=rand(8,12);

    }

    ImagePNG($im);     ImageDestroy($im);

    ?>

      在reg.php頁面我們寫一個表單:(此處省去了其他的HTML代碼)

     代碼如下  

    <tr>

    <td>驗證碼 :</td>

    <td><input type=”text” name=”yzm”style=”width:60px;height:20px;” /><img src=”code.php” onclick=”javascript:this.src=’code.php?’+Math.random();”></img></td>

    </tr>

    <tr>    <td colspan=’2′><input type=”submit” value=”注冊”/></td>

    <td>驗證碼 :</td>

    </tr>

      因為我們是用post提交的,所以我們用$_POST來獲取(在接受頁面做驗證碼的驗證:post.php頁面)

     代碼如下  

    Session_start();

    //back_alert()驗證碼輸入錯誤的時候,彈出錯誤信息

    function back_alert($yzm){

    echo “<script type=’text/javascript’>alert(‘$yzm’);history.back();</script>”;

    }

    //禁止惡意調用(禁止直接在浏覽器打開post.php頁面)

    if($_POST["yzm"]==null){

    back_alert(‘你都木有輸入驗證碼,有木有???’);  }

    // 禁止惡意注冊

    if(!($_POST["yzm"]==$_SESSION["Checknum"])){

    back_alert(‘驗證碼不正確’);

    } echo $_POST["yzm"];

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