程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> 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("驗證碼輸入錯誤");
    }
}
?>

 

驗證碼,是一種區分用戶是計算機和人的公共全自動程序。在captcha測試中,作為服務器的計算機會自動生成一個問題由用戶來解答。這個問題可以由計算機生成並評判,但是必須只有人類才能解答。由於計算機無法解答captcha的問題,所以回答出問題的用戶就可以被認為是人類。

*/
session_start();
$string = null;
$im = imagecreatetruecolor(60,25);  //創建真彩圖60*25
$bg = imagecolorallocate($im,255,255,255);//白色背景
imagefill($im,0,0,$bg);填充白色
$x = 5;//
$y = 0;//文字坐標
for($i=0 ; $i&lt;4 ;$i++)
{
$char = mt_rand(0,9);
$string .=$char;
$y = mt_rand(0,10);
$ccolor = imagecolorallocate($im,mt_rand(0,230),mt_rand(0,230),mt_rand(0,230));
imagechar($im,6,$x,$y,$char,$ccolor);//填充文字
$x += mt_rand(10,15);
}
for($i=0 ;$i
{
$x1 = mt_rand(0,80);
$x2 = mt_rand(0,80);
$y1 = mt_rand(0,30);
$y2 = mt_rand(0,30);
$x2 = $x1 +mt_rand(1,5);
$y2 = $y1 +mt_rand(1,5);
$lc = imagecolorallocate($im,mt_rand(0,230),mt_rand(0,230),mt_rand(0,230));
imageline($im,$x1,$y1,$x2,$y2,$lc);//填充線條
}
$_session['code'] = md5($string);
header("content-type:image/jpeg");
imagepng($im);
imagedestroy($im);

更多詳細內容請查看:http://www.bKjia.c0m/phper/php-cy/33707.htm


當然我們也可以能過同時我們可以明知php ajax來實例驗證功能。

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