//利用PHP绘图技能,画出自己的验证码

$checkCode=\"大众\"大众;

for($i=0;$i<4;$i++){

汉字验证码php若何用PHP说话绘制多样字符验证码 Python

//dechex把一个十进制数转换成十六进制

$checkCode.=dechex(rand(1,15));

}

//存入到session

session_start();

$_SESSION['checkcode']=$checkCode;

//创建画布

$image1=imagecreatetruecolor(110,30);

//创建颜色

$white=imagecolorallocate($image1,255,255,255);

//绘制字符

imagestring($image1,rand(1,5),rand(0,80),rand(0,20),$checkCode,$white);

//画出滋扰线

//创建滋扰线随机颜色

for($i=0;$i<20;$i++){

$randomColor=imagecolorallocate($image1,rand(0,255),rand(0,255),rand(0,255));

imageline($image1,rand(0,110),rand(0,30),rand(0,110),rand(0,30),$randomColor);

}

//输出

header(\"大众content-type:image/png\"大众);

imagepng($image1);

//销毁图片

imagedestroy($image1);

?>

图片形式是这样的

以上便是如何用PHP措辞绘制多样字符验证码的详细内容,更多请关注其它干系文章!

更多技巧请《转发 + 关注》哦!