首頁  >  文章  >  後端開發  >  學習php最簡單的驗證碼製作

學習php最簡單的驗證碼製作

WBOY
WBOY原創
2016-07-29 08:58:161035瀏覽

筆者是個即將出去實習的電腦學生,關於php純屬自己的興趣愛好,自學了一些簡單的。今天把自己的做的驗證碼發來讓大家指教一番。雖然簡單,卻花了不少心思,程式碼如下:

<?php 
//定义图片格式
header("Content-type:image/png");

//定义画布大小,即验证码区域
$img=imagecreatetruecolor(80, 30);

//定义画笔颜色
$red1=imagecolorallocate($img, 0xff, 0x00, 0x00);
$green1=imagecolorallocate($img, 0x00, 0xff, 0x00);
$blue1=imagecolorallocate($img, 0x00, 0x00, 0xff);

//定义画布背景色
$bgcolor=imagecolorallocate($img, 0xff, 0xff, 0xff);

//将定义的颜色存入数组,以便随机换颜色
$col = array(&#39;0&#39; =>$red1,'1'=>$green1,'2'=>$blue1 );

//填充画布背景色
imagefill($img, 0, 0, $bgcolor);

//添加验证码内容
for($i=0;$i<4;$i++)
{
	$content .=&#39;&#39;; 
	$c
}
imagestring($img, 40, 20, 10, $content,$col[rand(0,2)] );


//添加干扰因素
	//添加干扰点
	for($i=0;$i<50;$i++)
	{
		imagesetpixel($img, rand(0,80), rand(0,40), $col[rand(0,2)]);
	}
	//添加干扰线
	for($j=0;$j<4;$j++)
	{	
		//imageline函数的格式:imageline(image, x1, y1, x2, y2, color);
		imageline($img, rand(0,20), rand(0,20), rand(0,80), rand(0,30), $col[rand(0,2)]);
	}

//输出图像

imagepng($img);

//释放图像资源
imagedestroy($img);
?>



以上就介紹了學習php最簡單的驗證碼製作,包括了方面的內容,希望對PHP教程有興趣的朋友有幫助。

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