PHP实现变色验证码实例

前端之家收集整理的这篇文章主要介绍了PHP实现变色验证码实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="9643" class="copybut" id="copybut9643" onclick="doCopy('code9643')"> 代码如下:

<div class="codebody" id="code9643">
<?PHP
header("Content-type: image/png,charset='utf-8'");
$im = imagecreatetruecolor(400,30);
//白色
$white = imagecolorallocate($im,255,255);
//红色
$red = imagecolorallocate($im,0);
//黑色
$black=imagecolorallocate($im,0);
//绿色
$green=imagecolorallocate($im,0);
//蓝色
$blue=imagecolorallocate($im,255);
$color_arr=array($green,$blue,$red);
$color=array_rand($color_arr);
$text = '我靠这验证码太变态啦';
$textlen=iconv_strlen($text,'utf-8');//计算字符串长度
//随机截取两个字符,变色显示
$p1=rand(1,$textlen)-1;
while(($p2=rand(1,$textlen)-1)==$p1);
$w1=iconv_substr($text,$p1,1,'utf-8');
$w2=iconv_substr($text,'utf-8');
//字体文件 (PS:T不错的PHP Q扣峮:276167802,验证:csl)
$font = 'simkai.ttf';
imagefilledrectangle($im,399,29,$white);
for($i=0;$i<$textlen;$i++)
{
if($i==$p1||$i==$p2)
{
imagettftext($im,15,20*($i-1)+20,20,$color_arr[$color],$font,iconv_substr($text,$i,'utf-8'));
}
else
{
imagettftext($im,$black,'utf-8'));
}
}
imagepng($im);
imagedestroy($im);
?>

验证码中的字符并不是同一种颜色,让用户输入指定颜色的验证码,这样安全性会更好的。

原文链接:https://www.f2er.com/php/25316.html

猜你在找的PHP相关文章