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

<?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<1000;$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);



这个有用吗?

正在回答

1 回答

有用啊,网站登录的时候都会有验证码

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

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信