真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

ThinkPHP V6.0.12在php8.1下驗(yàn)證碼出現(xiàn)問(wèn)題

一、問(wèn)題描述

1、項(xiàng)目需求要求使用PHP8.1.*版本

成都創(chuàng)新互聯(lián)從2013年成立,先為青田等服務(wù)建站,青田等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢(xún)服務(wù)。為青田企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問(wèn)題。

2、運(yùn)行程序發(fā)現(xiàn)驗(yàn)證碼不生效報(bào)錯(cuò)如下:

二、錯(cuò)誤描述

1、報(bào)錯(cuò)信息得出:從浮點(diǎn)(數(shù)字)到整數(shù)的隱式轉(zhuǎn)換將失去精度

三、解決流程

1、找到報(bào)錯(cuò)文件位置

vendor\topthink\think-captcha\src\Captcha.php line 309

2、發(fā)現(xiàn)是第309行報(bào)錯(cuò),將代碼改成以下內(nèi)容(也可直接替換)

    /**
     * 畫(huà)雜點(diǎn)
     * 往圖片上寫(xiě)不同顏色的字母或數(shù)字
     */
    protected function writeNoise(): void
    {
        $codeSet = 'abcdefhijkmnpqrstuvwxyz';
        for ($i = 0; $i < 10; $i++) {
            //雜點(diǎn)顏色
            $noiseColor = imagecolorallocate($this->im, mt_rand(150, 225), mt_rand(150, 225), mt_rand(150, 225));
            for ($j = 0; $j < 5; $j++) {
                // 繪雜點(diǎn)
                imagestring($this->im, 5, mt_rand(-10, (int) $this->imageW), mt_rand(-10, (int)$this->imageH), $codeSet[mt_rand(0, 29)], $noiseColor);
            }
        }
    }

3、此時(shí)刷新頁(yè)面發(fā)現(xiàn)了新的報(bào)錯(cuò)信息(意思基本相同):

4、搜索(writeCurve)方法直接替換:

/**
     * 畫(huà)一條由兩條連在一起構(gòu)成的隨機(jī)正弦函數(shù)曲線(xiàn)作干擾線(xiàn)(你可以改成更帥的曲線(xiàn)函數(shù))
     *
     *      高中的數(shù)學(xué)公式咋都忘了涅,寫(xiě)出來(lái)
     *        正弦型函數(shù)解析式:y=Asin(ωx+φ)+b
     *      各常數(shù)值對(duì)函數(shù)圖像的影響:
     *        A:決定峰值(即縱向拉伸壓縮的倍數(shù))
     *        b:表示波形在Y軸的位置關(guān)系或縱向移動(dòng)距離(上加下減)
     *        φ:決定波形與X軸位置關(guān)系或橫向移動(dòng)距離(左加右減)
     *        ω:決定周期(最小正周期T=2π/∣ω∣)
     *
     */
    protected function writeCurve(): void
    {
        $px = $py = 0;

        // 曲線(xiàn)前部分
        $A = mt_rand(1, (int) $this->imageH / 2); // 振幅
        $b = mt_rand(-intval($this->imageH / 4), intval($this->imageH / 4)); // Y軸方向偏移量
        $f = mt_rand(-intval($this->imageH / 4), intval($this->imageH / 4)); // X軸方向偏移量
        $T = mt_rand((int) $this->imageH, intval($this->imageW * 2)); // 周期
        $w = (2 * M_PI) / $T;

        $px1 = 0; // 曲線(xiàn)橫坐標(biāo)起始位置
        $px2 = mt_rand($this->imageW / 2, $this->imageW * 0.8); // 曲線(xiàn)橫坐標(biāo)結(jié)束位置

        for ($px = $px1; $px <= $px2; $px = $px + 1) {
            if (0 != $w) {
                $py = $A * sin($w * $px + $f) + $b + $this->imageH / 2; // y = Asin(ωx+φ) + b
                $i  = (int) ($this->fontSize / 5);
                while ($i > 0) {
                    imagesetpixel($this->im, (int) $px + $i, (int) $py + $i, $this->color); // 這里(while)循環(huán)畫(huà)像素點(diǎn)比imagettftext和imagestring用字體大小一次畫(huà)出(不用這while循環(huán))性能要好很多
                    $i--;
                }
            }
        }

        // 曲線(xiàn)后部分
        $A   = mt_rand(1, intval($this->imageH / 2)); // 振幅
        $f   = mt_rand(-intval($this->imageH / 4), intval($this->imageH / 4)); // X軸方向偏移量
        $T   = mt_rand((int) $this->imageH, intval($this->imageW * 2)); // 周期
        $w   = (2 * M_PI) / $T;
        $b   = $py - $A * sin($w * $px + $f) - $this->imageH / 2;
        $px1 = $px2;
        $px2 = $this->imageW;

        for ($px = $px1; $px <= $px2; $px = $px + 1) {
            if (0 != $w) {
                $py = $A * sin($w * $px + $f) + $b + $this->imageH / 2; // y = Asin(ωx+φ) + b
                $i  = (int) ($this->fontSize / 5);
                while ($i > 0) {
                    imagesetpixel($this->im, (int) $px + $i, (int) $py + $i, $this->color);
                    $i--;
                }
            }
        }
    }

5、最后一步,搜索(create)方法直接替換:

 /**
     * 輸出驗(yàn)證碼并把驗(yàn)證碼的值保存的session中
     * @access public
     * @param null|string $config
     * @param bool        $api
     * @return Response
     */
    public function create(string $config = null, bool $api = false): Response
    {
        $this->configure($config);

        $generator = $this->generate();

        // 圖片寬(px)
        $this->imageW || $this->imageW = $this->length * $this->fontSize * 1.5 + $this->length * $this->fontSize / 2;
        // 圖片高(px)
        $this->imageH || $this->imageH = $this->fontSize * 2.5;
        // 建立一幅 $this->imageW x $this->imageH 的圖像
        $this->im = imagecreate((int) $this->imageW, (int) $this->imageH);
        // 設(shè)置背景
        imagecolorallocate($this->im, $this->bg[0], $this->bg[1], $this->bg[2]);

        // 驗(yàn)證碼字體隨機(jī)顏色
        $this->color = imagecolorallocate($this->im, mt_rand(1, 150), mt_rand(1, 150), mt_rand(1, 150));

        // 驗(yàn)證碼使用隨機(jī)字體
        $ttfPath = __DIR__ . '/../assets/' . ($this->useZh ? 'zhttfs' : 'ttfs') . '/';

        if (empty($this->fontttf)) {
            $dir  = dir($ttfPath);
            $ttfs = [];
            while (false !== ($file = $dir->read())) {
                if ('.' != $file[0] && substr($file, -4) == '.ttf') {
                    $ttfs[] = $file;
                }
            }
            $dir->close();
            $this->fontttf = $ttfs[array_rand($ttfs)];
        }

        $fontttf = $ttfPath . $this->fontttf;

        if ($this->useImgBg) {
            $this->background();
        }

        if ($this->useNoise) {
            // 繪雜點(diǎn)
            $this->writeNoise();
        }
        if ($this->useCurve) {
            // 繪干擾線(xiàn)
            $this->writeCurve();
        }

        // 繪驗(yàn)證碼
        $text = $this->useZh ? preg_split('/(? $char) {

            $x     = $this->fontSize * ($index + 1) * mt_rand((int) 1.2, (int) 1.6) * ($this->math ? 1 : 1.5);
            $y     = $this->fontSize + mt_rand(10, 20);
            $angle = $this->math ? 0 : mt_rand(-40, 40);

            imagettftext($this->im, $this->fontSize, $angle, (int) $x, (int) $y, $this->color, $fontttf, $char);
        }

        ob_start();
        // 輸出圖像
        imagepng($this->im);
        $content = ob_get_clean();
        imagedestroy($this->im);

        return response($content, 200, ['Content-Length' => strlen($content)])->contentType('image/png');
    }

說(shuō)明:以上是按照?qǐng)?bào)錯(cuò)信息依次修改;如有大佬有更好的解決辦法歡迎評(píng)論留言


網(wǎng)站標(biāo)題:ThinkPHP V6.0.12在php8.1下驗(yàn)證碼出現(xiàn)問(wèn)題
當(dāng)前鏈接:http://weahome.cn/article/dsogoeh.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部