zoukankan      html  css  js  c++  java
  • 验证码的实现1

    <?php
        
    //图像验证码生成
        function actionImgcode()
        {
            
    $imgcode = & FLEA::getSingleton('FLEA_Helper_ImgCode');
            
    /**
            * @param int $type 验证码包含的字符类型,0 - 数字、1 - 字母、其他值 - 数字和字母
            * @param int $length 验证码长度may
            * @param int $leftime 验证码有效时间(秒)
            * @param array $options 附加选项,可以指定字体、宽度和高度等参数,默认是GD库设置的字体
            
    */
            
    $imgcode->image(2, 5);
        }
        
    //图像验证码验证
        function actionImgCheck()
        {
            
    $imgcode = & FLEA::getSingleton('FLEA_Helper_ImgCode');
            
    if (!$imgcode->check($_POST['imgcode'])) {
                
    echo "<font color=\"Red\">不正确或超时</font>";
            } 
    else {
                
    echo 'right';
            }
            
    include('helper_imgcode.php');
        }
  • 相关阅读:
    不弹出提示直接关闭页面
    orcale表解锁
    序列化和反序列化
    js 实现post传参
    简易实现 instanceOf
    简易实现virtualdom
    react中setState同步、异步问题
    CMake Qt 配置 OpenCV
    VS执行时打开cmd
    VS2019+Qt5.15.2环境配置
  • 原文地址:https://www.cnblogs.com/zq535228/p/1171603.html
Copyright © 2011-2022 走看看