为了账号安全,请及时绑定邮箱和手机立即绑定

完善验证码

<?php
$img = imagecreatetruecolor(100, 40);
$black = imagecolorallocate($img, 0x00, 0x00, 0x00);
$green = imagecolorallocate($img, 0x00, 0xFF, 0x00);
$white = imagecolorallocate($img, 0xFF, 0xFF, 0xFF);
imagefill($img,0,0,$white);
//生成随机的验证码
$code = '';
$x = 10 + rand(0,20);
$y = 13 + rand(-15, 15);
for($i = 0; $i < 4; $i++) {
    $tmp = rand(0, 9);
    $randcolor = imagecolorallocate($img, rand(0,180), rand(0,180), rand(0,180));//随机色
    imagestring($img, 5, $x, $y, $tmp, $randcolor);
    $code .= $tmp;
    $x += rand(12,25);
    $y = 13 + rand(-15, 15);
    
    $lx1 = rand(0, 100);
    $ly1 = rand(0, 40);
    $lx2 = rand(0, 100);
    $ly2 = rand(0, 40);
    $randcolor = imagecolorallocate($img, rand(0,255), rand(0,255), rand(0,255));
    imageline($img,$lx1,$ly1,$lx2,$ly2,$randcolor);
}

//加入噪点干扰
for($i=0;$i<50;$i++) {
  imagesetpixel($img, rand(0, 100) , rand(0, 40) , $black); 
  imagesetpixel($img, rand(0, 100) , rand(0, 40) , $green);
}
//输出验证码
header("content-type: image/png");
imagepng($img);
imagedestroy($img);


正在回答

1 回答

<?php
$img = imagecreatetruecolor(100, 40);
$black = imagecolorallocate($img, 0x00, 0x00, 0x00);
$green = imagecolorallocate($img, 0x00, 0xFF, 0x00);
$white = imagecolorallocate($img, 0xFF, 0xFF, 0xFF);
imagefill($img,0,0,$white);
//生成随机的验证码
$code = '';
for($i = 0; $i < 4; $i++) {
    $code .= rand(0, 9);
}
imagestring($img, 5, 10, 10, $code, $black);
//加入噪点干扰
for($i=0;$i<50;$i++) {
  imagesetpixel($img, rand(0, 100) , rand(0, 100) , $black);
  imagesetpixel($img, rand(0, 100) , rand(0, 100) , $green);
}
//输出验证码
header("content-type: image/png");
imagepng($img);
imagedestroy($img);

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
PHP进阶篇
  • 参与学习       181828    人
  • 解答问题       2577    个

轻松学习PHP中级课程,进行全面了解,用PHP快速开发网站程序

进入课程

完善验证码

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信