溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP怎么生成圖片驗證碼

發(fā)布時間:2021-11-25 16:44:12 來源:億速云 閱讀:176 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“PHP怎么生成圖片驗證碼”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

5種PHP生成圖片驗證碼實例,包括數(shù)字驗證碼、數(shù)字+字母驗證碼、中文驗證碼、仿google驗證碼和算術(shù)驗證碼,PHP生成驗證碼的原理:通過GD庫,生成一張帶驗證碼的圖片,并將驗證碼保存在Session中。

PHP怎么生成圖片驗證碼

js驗證

$(function() { 
   $("#getcode_num").click(function() {  //數(shù)字驗證 
        $(this).attr("src", 'code_num.php?' + Math.random()); 
    }); 
    $("#chk_num").click(function() { 
        var code_num = $("#code_num").val(); 
        $.post("chk_code.php?act=num", { 
            code: code_num 
        }, 
        function(msg) { 
            if (msg == 1) { 
                alert("驗證碼正確!"); 
            } else { 
                alert("驗證碼錯誤!"); 
            } 
        }); 
    }); 
    //數(shù)字+字母驗證 
    $("#getcode_char").click(function() { 
        $(this).attr("src", 'code_char.php?' + Math.random()); 
    }); 
    $("#chk_char").click(function() { 
        var code_char = $("#code_char").val(); 
        $.post("chk_code.php?act=char", { 
            code: code_char 
        }, 
        function(msg) { 
            if (msg == 1) { 
                alert("驗證碼正確!"); 
            } else { 
                alert("驗證碼錯誤!"); 
            } 
        }); 
    }); 
    //中文驗證碼 
    $("#getcode_zh").click(function() { 
        $(this).attr("src", 'code_zh.php?' + Math.random()); 
    }); 
    $("#chk_zh").click(function() { 
        var code_zh = escape($("#code_zh").val()); 
        $.post("chk_code.php?act=zh", { 
            code: code_zh 
        }, 
        function(msg) { 
            if (msg == 1) { 
                alert("驗證碼正確!"); 
            } else { 
                alert("驗證碼錯誤!"); 
            } 
        }); 
    }); 
    //google驗證 
    $("#getcode_gg").click(function() { 
        $(this).attr("src", 'code_gg.php?' + Math.random()); 
    }); 
    $("#chk_gg").click(function() { 
        var code_gg = $("#code_gg").val(); 
        $.post("chk_code.php?act=gg", { 
            code: code_gg 
        }, 
        function(msg) { 
            if (msg == 1) { 
                alert("驗證碼正確!"); 
            } else { 
                alert("驗證碼錯誤!"); 
            } 
        }); 
    }); 
    //算術(shù)驗證 
    $("#getcode_math").click(function() { 
        $(this).attr("src", 'code_math.php?' + Math.random()); 
    }); 
    $("#chk_math").click(function() { 
        var code_math = $("#code_math").val(); 
        $.post("chk_code.php?act=math", { 
            code: code_math 
        }, 
        function(msg) { 
            if (msg == 1) { 
                alert("驗證碼正確!"); 
            } else { 
                alert("驗證碼錯誤!"); 
            } 
        }); 
    }); 
});


生成驗證碼

session_start();  
getCode(4,60,20);  
  
function getCode($num,$w,$h) {  
    $code = "";  
    for ($i = 0; $i < $num; $i++) {  
        $code .= rand(0, 9);  
    }  
    //4位驗證碼也可以用rand(1000,9999)直接生成  
    //將生成的驗證碼寫入session,備驗證時用  
    $_SESSION["helloweba_num"] = $code;  
    //創(chuàng)建圖片,定義顏色值  
    header("Content-type: image/PNG");  
    $im = imagecreate($w, $h);  
    $black = imagecolorallocate($im, 0, 0, 0);  
    $gray = imagecolorallocate($im, 200, 200, 200);  
    $bgcolor = imagecolorallocate($im, 255, 255, 255);  
    //填充背景  
    imagefill($im, 0, 0, $gray);  
  
    //畫邊框  
    imagerectangle($im, 0, 0, $w-1, $h-1, $black);  
  
    //隨機繪制兩條虛線,起干擾作用  
    $style = array ($black,$black,$black,$black,$black,  
        $gray,$gray,$gray,$gray,$gray  
    );  
    imagesetstyle($im, $style);  
    $y1 = rand(0, $h);  
    $y2 = rand(0, $h);  
    $y3 = rand(0, $h);  
    $y4 = rand(0, $h);  
    imageline($im, 0, $y1, $w, $y3, IMG_COLOR_STYLED);  
    imageline($im, 0, $y2, $w, $y4, IMG_COLOR_STYLED);  
  
    //在畫布上隨機生成大量黑點,起干擾作用;  
    for ($i = 0; $i < 80; $i++) {  
        imagesetpixel($im, rand(0, $w), rand(0, $h), $black);  
    }  
    //將數(shù)字隨機顯示在畫布上,字符的水平間距和位置都按一定波動范圍隨機生成  
    $strx = rand(3, 8);  
    for ($i = 0; $i < $num; $i++) {  
        $strpos = rand(1, 6);  
        imagestring($im, 5, $strx, $strpos, substr($code, $i, 1), $black);  
        $strx += rand(8, 12);  
    }  
    imagepng($im);//輸出圖片  
    imagedestroy($im);//釋放圖片所占內(nèi)存  
}

“PHP怎么生成圖片驗證碼”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI