首頁  >  文章  >  後端開發  >  php實作網站驗證碼功能

php實作網站驗證碼功能

墨辰丷
墨辰丷原創
2018-05-25 16:06:532547瀏覽

這篇文章主要介紹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 "正确";
 }
}

以上就是本文的全部內容,希望對大家的學習有幫助。

相關推薦:PHP 中驗證
身分證是否合法的函數

怎麼使用node實作基於token身份驗證

#AJAX驗證
資料庫內容並將值顯示在頁面

######

以上是php實作網站驗證碼功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn