程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> PHP實例教程:網頁登陸驗證碼

PHP實例教程:網頁登陸驗證碼

編輯:PHP綜合

我們在寫用戶驗證頁面,如注冊,登錄的時候,為了加強用戶登錄的安全性,添加驗證碼驗證。

驗證碼通過GD生成PNG圖片,並把$randval隨機數字賦給$_SESSION['login_check_num'],在通過用戶輸入的$_POST進行比較,來判斷是否正確。達到需要實現的功能,需要修改php.ini文件,使PHP支持GD庫。

<?PHP
//調用此頁面,如果下面的式子成立,則生成驗證碼圖片
if($_GET["action"]=="verifycode")
{
    rand_create();
}
//驗證碼圖片生成
function rand_create()
{
    //通知浏覽器將要輸出PNG圖片
    Header("Content-type: image/PNG");
    //准備好隨機數發生器種子 
    srand((double)microtime()*1000000);
    //准備圖片的相關參數  
    $im = imagecreate(62,20);
    $black = ImageColorAllocate($im, 0,0,0);  //RGB黑色標識符
    $white = ImageColorAllocate($im, 255,255,255); //RGB白色標識符
    $gray = ImageColorAllocate($im, 200,200,200); //RGB灰色標識符
    //開始作圖    
    imagefill($im,0,0,$gray);
    while(($randval=rand()%100000)<10000);{
        $_SESSION["login_check_num"] = $randval;
        //將四位整數驗證碼繪入圖片 
        imagestring($im, 5, 10, 3, $randval, $black);
    }
    //加入干擾象素   
    for($i=0;$i<200;$i++){
        $randcolor = ImageColorallocate($im,rand(0,255),rand(0,255),rand(0,255));
        imagesetpixel($im, rand()%70 , rand()%30 , $randcolor);
    }
    //輸出驗證圖片
    ImagePNG($im);
    //銷毀圖像標識符
    ImageDestroy($im);
}
//檢驗驗證碼
function rand_check()
{
    if($_POST["reg_rand"] == $_SESSION["login_check_num"]){
        return true;
    }
    else{
        exit("驗證碼輸入錯誤");
    }
}
?> 

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