吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2148|回复: 4
收起左侧

[其他转载] 刚开始学php,看了一遍教程自己做的验证码生成与判断

[复制链接]
森岛帆高 发表于 2020-1-15 15:25

验证码输入正确则跳转至百度!

code.php

<?php
    session_start();
    $_SESSION['cc']=getcode();
    function getcode(){
        $image=imagecreatetruecolor(100, 20);
        header('Content-type:image/png');
        imagefilledrectangle($image, 0, 0, 100, 20, getLightColor($image));
        $str='1234567890abcdefghijklmnopqrstuvwxyz';
        $string=substr(str_shuffle($str), 0,4);
        for($i=0;$i<4;$i++){
            imagechar($image, 5, ($i+0.2)*mt_rand(23, 26), mt_rand(0,5), $string[$i], getFontColor($image));
        }
        imageellipse($image, mt_rand(0, 100), mt_rand(0, 20), 200, 40, getFontColor($image));
        $cell=mt_rand(5, 10);
        for($i=0;$i<$cell;$i++){
            imagesetpixel($image, mt_rand(0, 100), mt_rand(0, 20), getFontColor($image));
        }
        imagepng($image);
        imagedestroy($image);
        return $string;
    }
    function getLightColor($image){
        return imagecolorallocate($image, mt_rand(130, 255), mt_rand(130, 255), mt_rand(130, 255));
    }
    function getFontColor($image){
        return imagecolorallocate($image, mt_rand(0, 120),mt_rand(0, 120),mt_rand(0, 120));
    }
?>

cheack.php

<html>
    <head>
        <title></title>
    </head>
    <body>
        <form action="cheack.php" method="post">
            <input type="text" name="code" id="code" value="" />
            <input type="submit" value="提交"/>
        </form>
        <img src="code.php"/>
    </body>
</html>
<?php
    session_start();
    if(!empty($_POST['code'])){
        if($_POST['code']==$_SESSION['cc']){
            echo '验证码正确';
            header('Location: http://www.baidu.com/');
            exit;
        }else{
            echo '<h5 style="color:darkred;">验证码错误</h5>';
        }
    }
?>
20200115152109.png

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
coolcalf + 1 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

xiaoyi201321 发表于 2020-1-16 16:22
还不错,可以做成ajax请求,页面效果会更好一些。
testsoso 发表于 2020-1-17 08:57
老哥后面写写注释,不然得看半天大家一起学习的,谢谢老哥分享
tangmin 发表于 2020-1-17 10:11
 楼主| 森岛帆高 发表于 2020-1-17 12:24
xiaoyi201321 发表于 2020-1-16 16:22
还不错,可以做成ajax请求,页面效果会更好一些。

之前还没咋了解过ajax,我之前就是想搞你说的那种
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-16 19:51

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表