欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

简单安全的PHP验证码

程序员文章站 2022-04-15 21:36:11
...
一,验证码示例

简单安全的PHP验证码

二,php验证码类,secoder.class.php

 '验证码值', 'time' => '验证码创建时间');
     */
    public static function entry() {
        // 图片宽(px)
        self::$imageL || self::$imageL = self::$length * self::$fontSize * 1.5 + self::$fontSize*1.5; 
        // 图片高(px)
        self::$imageH || self::$imageH = self::$fontSize * 2;
        // 建立一幅 self::$imageL x self::$imageH 的图像
        self::$_image = imagecreate(self::$imageL, self::$imageH); 
        // 设置背景      
        imagecolorallocate(self::$_image, self::$bg[0], self::$bg[1], self::$bg[2]); 
        // 验证码字体随机颜色
        self::$_color = imagecolorallocate(self::$_image, mt_rand(1,120), mt_rand(1,120), mt_rand(1,120));
        // 验证码使用随机字体 
        //$ttf = dirname(__FILE__) . '/ttfs/' . mt_rand(1, 20) . '.ttf';  4
        $ttf = dirname(__FILE__) . '/ttfs/4.ttf';  
         
        if (self::$useNoise) {
            // 绘杂点
            self::_writeNoise();
        } 
        if (self::$useCurve) {
            // 绘干扰线
            self::_writeCurve();
        }
         
        // 绘验证码
        $code = array(); // 验证码
        $codeNX = 0; // 验证码第N个字符的左边距
        for ($i = 0; $i<: self:: mt_rand imagettftext isset session_start join time header private max-age="0," no-store no-cache must-revalidate post-check="0," pre-check="0'," false image imagepng imagedestroy a b protected static function _writecurve y x m_pi for if sin while> 0) { 
                    imagesetpixel(self::$_image, $px + $i, $py + $i, self::$_color);  // 这里画像素点比imagettftext和imagestring性能要好很多                  
                    $i--;
                }
            }
        }
         
        $A = mt_rand(1, self::$imageH/2);                  // 振幅        
        $f = mt_rand(-self::$imageH/4, self::$imageH/4);   // X轴方向偏移量
        $T = mt_rand(self::$imageH*1.5, self::$imageL*2);  // 周期
        $w = (2* M_PI)/$T;      
        $b = $py - $A * sin($w*$px + $f) - self::$imageH/2;
        $px1 = $px2;
        $px2 = self::$imageL;
        for ($px=$px1; $px 0) {         
                    imagesetpixel(self::$_image, $px + $i, $py + $i, self::$_color);  // 这里(while)循环画像素点比imagettftext和imagestring用字体大小一次画出(不用这while循环)性能要好很多    
                    $i--;
                }
            }
        }
    }
     
    /**
     * 画杂点
     * 往图片上写不同颜色的字母或数字
     */
    protected static function _writeNoise() {
        for($i = 0; $i  self::$expire) {
            unset($_SESSION[self::$seKey]);
            //echo $_SESSION[self::$seKey]['code'].'2';
            return false;
            //return 0;
        }
 
//      if($code == $_SESSION[self::$seKey]['code']) {
        if(strtoupper($code) == $_SESSION[self::$seKey]['code']) { //不区分大小写比较
            //echo $_SESSION[self::$seKey]['code'].'3';
            return true;        
        }
        //echo $_SESSION[self::$seKey]['code'].'4';
        return false;
                 
    }
}
 
 
// useage
/*
YL_Security_Secoder::$useNoise = false;  // 要更安全的话改成true
YL_Security_Secoder::$useCurve = true;
YL_Security_Secoder::entry();
*/
 
/*
// 验证验证码
if (!YL_Security_Secoder::check(@$_POST['secode'])) {
    print 'error secode';
}
*/