最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

使用php實(shí)現(xiàn)網(wǎng)站驗(yàn)證碼功能【推薦】

 更新時(shí)間:2017年02月09日 09:33:55   作者:怪獸小飛機(jī)  
本文主要介紹了使用php實(shí)現(xiàn)網(wǎng)站驗(yàn)證碼功能的方法。具有很好的參考價(jià)值,下面跟著小編一起來(lái)看下吧

驗(yàn)證碼是網(wǎng)站常用的一項(xiàng)安全措施,也是新人站長(zhǎng)較難掌握的一項(xiàng)技能,這里我向大家介紹一簡(jiǎn)單有效的驗(yàn)證碼實(shí)現(xiàn)方法。

開(kāi)始之前

在正式開(kāi)始之前我們需要打開(kāi)php的gd2圖形庫(kù)支持(在php.ini,中搜索“php_gd2.dll”,找到“;extension=php_gd2.dll”并去掉句首的分號(hào)) 。

可以參考:如何打開(kāi)php的gd2庫(kù)

核心:img.php

這個(gè)頁(yè)面生成一張驗(yàn)證碼并將正確數(shù)值寫(xiě)入 Session

隨機(jī)一個(gè)4位驗(yàn)證碼

$check=rand(1000,9999); 

將生成的驗(yàn)證碼寫(xiě)入session

Session_start(); 
$_SESSION["check"] = $check;

創(chuàng)建一張圖片

$im = imagecreate(80,30);

由于這種圖片的背景默認(rèn)是黑色的所以我們要用白色填充。

imagefill($im,0,0,ImageColorAllocate($im, 255,255,255)); 

使用imageline隨機(jī)繪制兩條實(shí)線

$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);

在隨機(jī)位置繪制文字

$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);

結(jié)束,下面是完整代碼

<?php $check=rand(1000,9999);
Session_start(); 
$_SESSION["check"] = $check; 
$img = imagecreate(80,30); 
imagefill($img,0,0,ImageColorAllocate($img,255,255,255)); 
$y1=rand(0,30); 
$y2=rand(0,30); 
$y3=rand(0,30); 
$y4=rand(0,30); 
imageline($img,0,$y1,70, $y3,ImageColorAllocate($img,55,255,25)); 
imageline($img,0,$y2,70, $y4,ImageColorAllocate($img,55,55,255)); 
$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="驗(yàn)證碼">
<br>
<img id="cikle" style="-webkit-user-select: none" src="img.php"><input type="submit" value="Submit">
</form> 
</body>
</html>

以上的代碼將用戶輸入的數(shù)值傳遞到“action.php”中

檢查:action.php

這一步要將用戶輸入數(shù)值與session中的數(shù)值進(jìn)行比對(duì)

相等,輸出“正確”

不相等,輸出“不正確”

<?php
Session_start(); 
if ($_SERVER["REQUEST_METHOD"] == "POST") {
 if($_SESSION["check"]!=intval($_POST["cikle"])){
 echo "不正確";
 }else{
 echo "正確";
 }
}

以上就是本文的全部?jī)?nèi)容,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來(lái)一定的幫助,同時(shí)也希望多多支持腳本之家!

相關(guān)文章

最新評(píng)論

黑龙江省| 兰溪市| 策勒县| 宁河县| 海南省| 宁城县| 进贤县| 光泽县| 南雄市| 凤庆县| 昌平区| 汪清县| 中江县| 收藏| 淮南市| 象州县| 泸定县| 长沙县| 天峨县| 冕宁县| 德钦县| 保靖县| 梁平县| 曲阜市| 淮滨县| 奈曼旗| 黄石市| 绥滨县| 吴旗县| 新泰市| 利川市| 巴楚县| 乌拉特前旗| 合山市| 石家庄市| 平塘县| 巴林右旗| 万州区| 柏乡县| 沾化县| 开封县|