저자는 인턴십을 앞두고 있는 컴퓨터 학생입니다. 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('0' =>$red1,'1'=>$green1,'2'=>$blue1 ); //填充画布背景色 imagefill($img, 0, 0, $bgcolor); //添加验证码内容 for($i=0;$i<4;$i++) { $content .=''; $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 튜토리얼에 관심이 있는 친구들에게 도움이 되길 바랍니다.