首頁  >  文章  >  後端開發  >  php驗證碼怎麼做?

php驗證碼怎麼做?

黄舟
黄舟原創
2017-08-03 13:47:212248瀏覽

php驗證碼製作是php基本功的考核,php驗證碼製作必要開啟gd函式庫,因為要用到gd函式庫裡面的不少函數

php驗證碼怎麼做?

推薦學習PHP開發驗證碼教學

1.建立驗證碼底圖

<?php
$image = imagecreatetruecolor(100,30);
$bgcolor = imagecolorallocate($image,000,255,255);//#FFFFFFFFFFFF
imagefill($image,0,0,$bgcolor);

header(&#39;content-type: image/png&#39;);
imagepng($image);
//销毁
imagedestroy($image);
?>

##課程連結: http://www.php.cn/code/3872.html

2.

實作數位驗證碼

<?php
$image = imagecreatetruecolor(100,30);
$bgcolor = imagecolorallocate($image,255,255,255);//#FFFFFFFFFFFF
imagefill($image,0,0,$bgcolor);
for ($i=0;$i<4;$i++){
 $fontsize = 6;
 $fontcolor = imagecolorallocate($image,rand(0,120),rand(0,120),rand(0,120));
 $fontcontent = rand(0,9);
 $x = ($i * 100/4)+rand(5,10);
 $y = rand(5,10);
 imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor);
}
header(&#39;content-type: image/png&#39;);
imagepng($image);
//销毁
imagedestroy($image);

?>

課程連結:http://www.php.cn/code/3874.html

#3.

增加干擾元素##

<?php
$image = imagecreatetruecolor(100,30);
$bgcolor = imagecolorallocate($image,255,255,255);//#FFFFFFFFFFFF
imagefill($image,0,0,$bgcolor);
for ($i=0;$i<4;$i++){
 $fontsize = 6;
 $fontcolor = imagecolorallocate($image,rand(0,120),rand(0,120),rand(0,120));
 $fontcontent = rand(0,9);
 $x = ($i * 100/4)+rand(5,10);
 $y = rand(5,10);
 imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor);
}
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);
}
header(&#39;content-type: image/png&#39;);
imagepng($image);
//销毁
imagedestroy($image);
?>

課程連結:

http://www.php.cn/code/3875.html

4.

字母與數字混合驗證碼

<?php
$image = imagecreatetruecolor(100,30);
$bgcolor = imagecolorallocate($image,255,255,255);//#FFFFFFFFFFFF
imagefill($image,0,0,$bgcolor);
for ($i=0;$i<4;$i++){
 $fontsize = 6;
 $fontcolor = imagecolorallocate($image,rand(0,120),rand(0,120),rand(0,120));
 $data=&#39;abcdefghijklmnopqrstuvwxyz1234567890&#39;;
 $fontcontent=substr($data,rand(0,strlen($data)),1);
 $x = ($i * 100/4)+rand(5,10);
 $y = rand(5,10);
 imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor);
}
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<8;$i++){
 $linecolor = imagecolorallocate($image,rand(60,220),rand(60,220),rand(60,220));
 imageline($image,rand(1,99),rand(1,29),rand(1,99),rand(1,29),$linecolor);
}
header(&#39;content-type: image/png&#39;);
imagepng($image);
//销毁
imagedestroy($image);

?>
課程連結:

http://www.php.cn/code/3878.html

5.

使用session儲存驗證資訊

<?php
session_start();
$image = imagecreatetruecolor(100,30);
$bgcolor = imagecolorallocate($image,255,255,255);//#FFFFFFFFFFFF
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=&#39;abcdefghijklmnopqrstuvwxyz1234567890&#39;;
 $fontcontent=substr($data,rand(0,strlen($data)),1);
 $captch_code.="$fontcontent";
 $x = ($i * 100/4)+rand(5,10);
 $y = rand(5,10);
 imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor);
}
$_SESSION[&#39;code&#39;]=$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<8;$i++){
 $linecolor = imagecolorallocate($image,rand(60,220),rand(60,220),rand(60,220));
 imageline($image,rand(1,99),rand(1,29),rand(1,99),rand(1,29),$linecolor);
}
header(&#39;content-type: image/png&#39;);
imagepng($image);
//销毁
imagedestroy($image);
?>

課程連結:http://www.php.cn/code/3879.html 6.

驗證碼的使用

<?php
session_start();
$image = imagecreatetruecolor(100,30);
$bgcolor = imagecolorallocate($image,255,255,255);//#FFFFFFFFFFFF
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=&#39;abcdefghijklmnopqrstuvwxyz1234567890&#39;;
 $fontcontent=substr($data,rand(0,strlen($data)),1);
 $captch_code.="$fontcontent";
 $x = ($i * 100/4)+rand(5,10);
 $y = rand(5,10);
 imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor);
}
$_SESSION[&#39;code&#39;]=$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<5;$i++){
 $linecolor = imagecolorallocate($image,rand(60,220),rand(60,220),rand(60,220));
 imageline($image,rand(1,99),rand(1,29),rand(1,99),rand(1,29),$linecolor);
}
header(&#39;content-type: image/png&#39;);
imagepng($image);
//销毁
imagedestroy($image);
?>

#課程連結:http://www.php.cn/code/4832. html

以上是php驗證碼怎麼做?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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