網(wǎng)站的安全性是開發(fā)者不可忽視的一個問題,目前使用最多的一種可以提高網(wǎng)站安全性的方法就是使用驗證碼功能機制,有的僅僅使用一個幾位數(shù)字字母混亂的驗證碼,有的進(jìn)行手機發(fā)送短信進(jìn)行驗證,有的使用郵箱發(fā)送郵件進(jìn)行驗證,但是這個驗證碼功能機制是如何實現(xiàn)的呢?下面就為大家詳細(xì)解釋驗證碼功能機制的實現(xiàn)思路以及簡單的實現(xiàn)方法。
?php
/**
* =======================================
* Created by WeiBang Technology.
* User: Wei ZhiHua
* Date: 2016/10/12 0020
* Time: 下午 4:14
* Power: 實現(xiàn)驗證碼功能
* =======================================
*/
//開啟session
session_start();
//創(chuàng)建一個大小為 100*30 的驗證碼
$image = imagecreatetruecolor(100, 30);
$bgcolor = imagecolorallocate($image, 255, 255, 255);
imagefill($image, 0, 0, $bgcolor);
$captch_code = '';
for ($i = 0; $i 4; $i++) {
$fontsize = 6;
$fontcolor = imagecolorallocate($image, rand(0, 120), rand(0, 120), rand(0, 120));
$data = 'abcdefghijkmnpqrstuvwxy3456789';
$fontcontent = substr($data, rand(0, strlen($data) - 1), 1);
$captch_code .= $fontcontent;
$x = ($i * 100 / 4) + rand(5, 10);
$y = rand(5, 10);
imagestring($image, $fontsize, $x, $y, $fontcontent, $fontcolor);
}
//就生成的驗證碼保存到session
$_SESSION['authcode'] = $captch_code;
//在圖片上增加點干擾元素
for ($i = 0; $i 200; $i++) {
$pointcolor = imagecolorallocate($image, rand(50, 200), rand(50, 200), rand(50, 200));
imagesetpixel($image, rand(1, 99), rand(1, 29), $pointcolor);
}
//在圖片上增加線干擾元素
for ($i = 0; $i 3; $i++) {
$linecolor = imagecolorallocate($image, rand(80, 220), rand(80, 220), rand(80, 220));
imageline($image, rand(1, 99), rand(1, 29), rand(1, 99), rand(1, 29), $linecolor);
}
//設(shè)置頭
header('content-type:image/png');
imagepng($image);
imagedestroy($image);
?>
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP圖形與圖片操作技巧匯總》、《PHP數(shù)組(Array)操作技巧大全》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》、《php程序設(shè)計算法總結(jié)》、《PHP數(shù)學(xué)運算技巧總結(jié)》、《php字符串(string)用法總結(jié)》及《php常見數(shù)據(jù)庫操作技巧匯總》