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

发布时间:2020-08-28编辑:脚本学堂
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验证码简单函数代码(附效果图)
分享一个php 验证码类及调用示例
php验证码的三个实例代码分享
一个php验证码的封装类
php自定义大小验证码的实例代码
php生成扭曲及旋转的验证码图片的实例代码
php仿QQ验证码的实现代码
php验证码函数使用的例子
php5验证码类(简易实用型)
php验证码(GD库生成验证码)的例子
PHP生成验证码时“图像因其本身有错无法显示”的解决方法
php图片验证码的例子
php验证码刷新与局部刷新的实现方法
php GD库生成验证码的实例
php生成验证码的例子
php 验证码类 php 验证码
一个比较稳定的php登陆系统验证码
用php生成带有雪花背景的验证码