PHP全栈学习笔记25

作者: 魔王哪吒 | 来源:发表于2019-05-04 16:04 被阅读2次

php验证码

<?php
/*
*@Author: 达叔小生
**/
    header("content-type:image/png");   //设置页面编码        
    $num = $_GET['num'];            //获取超级链接传递的随机数
    $imagewidth=60;             //定义画布的宽
    $imageheight=18;                //定义画布的高
    $numimage = imagecreate($imagewidth,$imageheight);          //创建画布
    imagecolorallocate($numimage,240,240,240);              //设置画布颜色
    for($i=0;$i<strlen($num);$i++){                         //循环读取随机数
        $x = mt_rand(1,8)+$imagewidth*$i/4;
        $y = mt_rand(1,$imageheight/4);
        $color=imagecolorallocate($numimage,mt_rand(0,150),mt_rand(0,150),mt_rand(0,150)); //定义图像的颜色
        imagestring($numimage,5,$x,$y,$num[$i],$color);         //将随机数写入到画布中
    }
    for($i=0;$i<200;$i++){          //for循环语句生成干扰线
        $randcolor=imagecolorallocate($numimage,rand(200,255),rand(200,255),rand(200,255)); //定义颜色
        imagesetpixel($numimage,rand()%70,rand()%20,$randcolor);        //生成干扰线
    }
    imagepng($numimage);            //生成图像
    imagedestroy($numimage);            //释放资源
?>

相关文章

  • PHP全栈学习笔记25

    php验证码

  • PHP全栈学习笔记25

    php验证码

  • PHP全栈学习笔记2

    php概述 什么是php,PHP语言的优势,PHP5的新特性,PHP的发展趋势,PHP的应用领域。 PHP是超文本...

  • PHP全栈学习笔记3

    trim()函数,用于去除字符串首尾空格和特殊字符返回的是去掉的空格和特殊字符后的字符串 ltrim()函数,用于...

  • PHP全栈学习笔记4

    php和JavaScript,掌握JavaScript基础,自定义函数,流程控制语句,事件,调用JavaScrip...

  • PHP全栈学习笔记5

    php与mysql数据库,PHP支持很多数据库,与mysql为牛逼组合,mysql数据库的基础知识的掌握是由必要的...

  • PHP全栈学习笔记22

    定义和用法sha1() 函数计算字符串的 SHA-1 散列。sha1() 函数使用美国 Secure Hash 算...

  • PHP全栈学习笔记24

    PHP in_array() 函数 定义和用法in_array() 函数搜索数组中是否存在指定的值。 type 参...

  • PHP全栈学习笔记26

    php 验证码

  • PHP全栈学习笔记28

    数据库Mysql概述,数据库操作,数据表操作,数据类型,管理数据库 sql标准语言:数据查询语言 select数据...

网友评论

    本文标题:PHP全栈学习笔记25

    本文链接:https://www.haomeiwen.com/subject/tdaxoqtx.html