本文主要介紹了使用php實作網站驗證碼功能的方法。具有很好的參考價值,以下跟著小編一起來看下吧
驗證碼是網站常用的一項安全措施,也是新人站長較難掌握的一項技能,這裡我向大家介紹一簡單有效的驗證碼實作方法。
開始之前
在正式開始之前我們需要打開php的gd2圖形庫支援(在php.ini,中搜尋“php_gd2.dll”,找到“; extension=php_gd2.dll」並去掉句首的分號) 。
可以參考:如何開啟php的gd2函式庫
核心:img.php
這個頁面產生一張驗證碼並將正確數值寫入Session
隨機一個4位驗證碼
#$check=rand(1000,9999);
將產生的驗證碼寫入session
#Session_start(); $_SESSION["check"] = $check;
創建一張圖片
$im = imagecreate(80,30);
由於這種圖片的背景預設是黑色的所以我們要用白色填滿。
imagefill($im,0,0,ImageColorAllocate($im, 255,255,255));
#使用imageline隨機繪製兩條實線
$y1=rand(0,30); $y2=rand(0,30); $y3=rand(0,30); $y4=rand(0,30); imageline($im,0,$y1,70, $y3,000); imageline($im,0,$y2,70, $y4,000);
#在隨機位置繪製文字
#$strx=rand(3,15); $stry=rand(2,15); imagestring($img,5,$strx,$stry,substr($check,0,1),ImageColorAllocate($img,34,87,100)); $strx+=rand(15,20); $stry=rand(2,15); imagestring($img,5,$strx,$stry,substr($check,1,1),ImageColorAllocate($img,781,117,78)); $strx+=rand(15,20); $stry=rand(2,15); imagestring($img,5,$strx,$stry,substr($check,2,1),ImageColorAllocate($img,160,40,40)); $strx+=rand(15,20); $stry=rand(2,15); imagestring($img,5,$strx,$stry,substr($check,3,1),ImageColorAllocate($img,25,55,10));
輸出圖片
#Header("Content-type: image/PNG"); ImagePNG($img);
結束,以下是完整程式碼
登入後複製
使用者介面:index.php
想必大家都知道怎麼做,我就直接給程式碼了
<!DOCTYPE html> <html> <body> <form action="action.php" method="post"> <input type="text" name="cikle" placeholder="验证码"> <br> <img id="cikle" style="-webkit-user-select: none" src="img.php"><input type="submit" value="Submit"> </form> </body> </html>
以上的程式碼將使用者輸入的數值傳遞到「action.php」
檢查:action.php這一步驟要將使用者輸入數值與session中的數值進行比對
相等,輸出“正確”
不相等,輸出“不正確”
<?php Session_start(); if ($_SERVER["REQUEST_METHOD"] == "POST") { if($_SESSION["check"]!=intval($_POST["cikle"])){ echo "不正确"; }else{ echo "正确"; } }