PHP建站技术分享-从入门到精通_各类知识收集PHP建站技术分享-从入门到精通_各类知识收集PHP建站技术分享-从入门到精通_各类知识收集

QQ:420220301 微信/手机:150-3210-7690
当前位置:首页 > 工作总结

php封装的验证码工具类完整实例

管理员 2025-03-17
工作总结
55

下面是一个完整的PHP验证码工具类的实例。这个类可以生成验证码图片,并将验证码字符串存储在Session中,以便后续验证。

php
复制
<?phpclass Captcha{
    private $width;
    private $height;
    private $codeLength;
    private $fontFile;
    private $sessionKey;

    public function __construct($width = 120, $height = 40, $codeLength = 4, $fontFile = null, $sessionKey = 'captcha_code')
    {
        $this->width = $width;
        $this->height = $height;
        $this->codeLength = $codeLength;
        $this->fontFile = $fontFile ?: __DIR__ . '/arial.ttf'; // 默认字体文件路径
        $this->sessionKey = $sessionKey;

        if (!extension_loaded('gd')) {
            throw new \RuntimeException('GD extension is not loaded.');
        }

        if (!file_exists($this->fontFile)) {
            throw new \RuntimeException('Font file not found.');
        }
    }

    public function generateCode()
    {
        $characters = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789';
        $code = '';
        for ($i = 0; $i < $this->codeLength; $i++) {
            $code .= $characters[rand(0, strlen($characters) - 1)];
        }
        return $code;
    }

    public function createImage($code)
    {
        $image = imagecreatetruecolor($this->width, $this->height);
        $bgColor = imagecolorallocate($image, 255, 255, 255);
        imagefilledrectangle($image, 0, 0, $this->width, $this->height, $bgColor);

        // 添加干扰线
        for ($i = 0; $i < 5; $i++) {
            $lineColor = imagecolorallocate($image, rand(100, 255), rand(100, 255), rand(100, 255));
            imageline($image, rand(0, $this->width), rand(0, $this->height), rand(0, $this->width), rand(0, $this->height), $lineColor);
        }

        // 添加干扰点
        for ($i = 0; $i < 50; $i++) {
            $pixelColor = imagecolorallocate($image, rand(100, 255), rand(100, 255), rand(100, 255));
            imagesetpixel($image, rand(0, $this->width), rand(0, $this->height), $pixelColor);
        }

        // 添加验证码文字
        $textColor = imagecolorallocate($image, 0, 0, 0);
        for ($i = 0; $i < $this->codeLength; $i++) {
            $angle = rand(-10, 10);
            $x = intval($this->width / $this->codeLength) * $i + 10;
            $y = rand(intval($this->height / 2), intval($this->height - 10));
            imagettftext($image, 20, $angle, $x, $y, $textColor, $this->fontFile, $code[$i]);
        }

        return $image;
    }

    public function outputImage($image)
    {
        header('Content-Type: image/png');
        imagepng($image);
        imagedestroy($image);
    }

    public function generate()
    {
        $code = $this->generateCode();
        $_SESSION[$this->sessionKey] = $code;
        $image = $this->createImage($code);
        $this->outputImage($image);
    }

    public function validate($input)
    {
        if (empty($_SESSION[$this->sessionKey])) {
            return false;
        }
        return strtolower($input) === strtolower($_SESSION[$this->sessionKey]);
    }}// 使用示例session_start();$captcha = new Captcha();$captcha->generate();// 验证用户输入if ($_SERVER['REQUEST_METHOD'] === 'POST') {
    $userInput = $_POST['captcha'];
    if ($captcha->validate($userInput)) {
        echo '验证码正确!';
    } else {
        echo '验证码错误!';
    }}

说明:

  1. Captcha类:封装了生成验证码图片和验证用户输入的功能。

  2. generateCode方法:生成随机的验证码字符串。

  3. createImage方法:根据生成的验证码字符串创建验证码图片。

  4. outputImage方法:输出验证码图片到浏览器。

  5. generate方法:生成验证码并将其存储在Session中。

  6. validate方法:验证用户输入的验证码是否正确。

使用步骤:

  1. 在需要显示验证码的地方调用$captcha->generate()方法。

  2. 在表单提交后,使用$captcha->validate($userInput)方法验证用户输入的验证码。

注意事项:

  • 确保服务器上安装了GD库。

  • 确保字体文件路径正确。

  • 在使用验证码之前,确保已经启动了Session(session_start())。

这个工具类可以方便地集成到任何PHP项目中,用于生成和验证验证码。



本文关键词:

希望以上内容对你有所帮助!如果还有其他问题,请随时提问。 各类知识收集 拥有多年CMS企业建站经验,对 iCMS, LeCMS, ClassCMS, Fastadmin, PbootCMS, PHPCMS, 易优CMS, YzmCMS, 讯睿CMS, 极致CMS, Wordpress, HkCMS, YznCMS, WellCMS, ThinkCMF, 等各类cms的相互转化,程序开发,网站制作,bug修复,程序杀毒,插件定制都可以提供最佳解决方案。

相关推荐

扫码关注

qrcode

QQ交谈

回顶部