Jquery中文网 www.jquerycn.cn
Jquery中文网 >  脚本编程  >  php  >  正文 php随机验证码 php生成随机验证码(图文)

php随机验证码 php生成随机验证码(图文)

发布时间:2015-08-11   编辑:www.jquerycn.cn
php随机验证码 php生成随机验证码的一段代码,适合新手朋友研究学习验证码。

php随机验证码 php生成随机验证码的一段代码,适合新手朋友研究学习验证码。
 

复制代码 代码如下:

 

验证码

for($i = 0; $i<6; $i++){
    $_md_color  = imagecolorallocate($_img,mt_rand(0, 255),mt_rand(0, 255), mt_rand(0, 255));
    imageline($_img, mt_rand(0, 75),  mt_rand(0, 75),  mt_rand(0, 75),  mt_rand(0, 75),$_md_color);
}
//随机雪花
for($i = 0; $i<100;$i++){
    $_md_color = imagecolorallocate($_img, mt_rand(200, 255), mt_rand(200, 255), mt_rand(200, 255));
    imagestring($_img, 1, mt_rand(1, $_width), mt_rand(1, $_height), '*', $_md_color);
}
//黑色边框
$_black = imagecolorallocate($_img, 0, 0, 0);
imagerectangle($_img, 0, 0, $_width-1, $_height-1, $_black);
//输出验证码
for($i = 0;$i<strlen($_SESSION['code']);$i++){
    $_mt_color = imagecolorallocate($_img, mt_rand(0, 100), mt_rand(0, 150), mt_rand(0, 200));
    imagestring($_img, mt_rand(3, 5), $i*$_width/4+mt_rand(1, 10), mt_rand(1, $_height/2), $_SESSION['code'][$i],$_mt_color); 
}
header('Content-Type:image/png');
imagepng($_img);
//销毁
imagedestroy($_img);
?>

您可能感兴趣的文章:
php随机生成4位数字验证码
php生成随机产生六位数密码的代码
php验证码大全(实例分享)
php彩色验证码的简单例子
用php生成带有雪花背景的验证码
php随机验证码 php生成随机验证码(图文)
php点击验证码实时刷新的实现代码
php验证码的三个实例代码分享
php图片验证码的例子
php5验证码类(简易实用型)

关键词: php验证码  验证码   
[关闭]