1. 程式人生 > >thinkphp5.0如何使用框架以及自己封裝成驗證碼

thinkphp5.0如何使用框架以及自己封裝成驗證碼

今天因為這個問題鬱悶了很久,好在最後的最後謎團終於被我解開了。

我的開發環境是wamp2.4,php版本是5.4,tp框架採用的是5.0,但這都不是重點,重點是我在安裝think-captcha時一直出錯,上網查了很多,排除了不少原因,可依然無效,悲催的我一直以為是開發環境的問題,結果果斷解除安裝了wamp,安裝phpStudy,第一次使用phpStudy,不得不說phpStudy真的太好用啦!無需手動新增配置,一步到位啊。 安裝好了phpStudy後,我又安裝了最新的composer,tp5.1,再然後composer require topthink/think-captcha果斷成功了,走出了第一步,驗證碼的問題隨之而解,可新的問題又來了,原來的專案放到tp5.1上後,出現了許多新的問題,那就是框架版本改動後導致我新多地方的功能實現不了了,這樣一來,需要改動的地方又多了,無奈之下,我只有自己手動寫一個驗證碼了。程式碼如下:

class Captcha {
    private $charset = 'abcdefghkmnprstuvwxyzABCDEFGHKMNPRSTUVWXYZ23456789';//隨機因子
    private $code;//驗證碼
    private $codelen = 4;//驗證碼長度
    private $width = 130;//寬度
    private $height = 50;//高度
    private $img;//圖形資源控制代碼
    private $font;//指定的字型
    private $fontsize = 25;//指定字型大小
    private $fontcolor;//指定字型顏色
    //構造方法初始化
    public function __construct() {
        $this->font = ADMIN_PATH.'assets/ttfs/1.ttf';//注意字型路徑要寫對,否則顯示不了圖片
    }
    //生成隨機碼
    private function createCode() {
        $_len = strlen($this->charset)-1;
        for ($i=0;$i<$this->codelen;$i++) {
            $this->code .= $this->charset[mt_rand(0,$_len)];
        }
    }
    //生成背景
    private function createBg() {
        $this->img = imagecreatetruecolor($this->width, $this->height);
        $color = imagecolorallocate($this->img, mt_rand(157,255), mt_rand(157,255), mt_rand(157,255));
        imagefilledrectangle($this->img,0,$this->height,$this->width,0,$color);
    }
    //生成文字
    private function createFont() {
        $_x = $this->width / $this->codelen;
        for ($i=0;$i<$this->codelen;$i++) {
            $this->fontcolor = imagecolorallocate($this->img,mt_rand(0,156),mt_rand(0,156),mt_rand(0,156));
            imagettftext($this->img,$this->fontsize,mt_rand(-30,30),$_x*$i+mt_rand(1,5),$this->height / 1.4,$this->fontcolor,$this->font,$this->code[$i]);
        }
    }
    //生成線條、雪花
    private function createLine() {
        //線條
        for ($i=0;$i<6;$i++) {
            $color = imagecolorallocate($this->img,mt_rand(0,156),mt_rand(0,156),mt_rand(0,156));
            imageline($this->img,mt_rand(0,$this->width),mt_rand(0,$this->height),mt_rand(0,$this->width),mt_rand(0,$this->height),$color);
        }
        //雪花
        for ($i=0;$i<100;$i++) {
            $color = imagecolorallocate($this->img,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255));
            imagestring($this->img,mt_rand(1,5),mt_rand(0,$this->width),mt_rand(0,$this->height),'*',$color);
        }
    }
    //輸出
    private function outPut() {
        ob_start();
        imagepng($this->img);
        $content = ob_get_clean();
        imagedestroy($this->img);
        return $content;
    }
    //對外生成
    public function doimg() {
        $this->createBg();
        $this->createCode();
        $this->createLine();
        $this->createFont();
        Session::set('verify_code',strtolower($this->code));
        return $this->outPut();
    }
}

其實生成驗證碼的過程很簡單,建立畫布----新增背景顏色----限定寬高----干擾項----隨機驗證碼—輸出; 需要注意的是在框架裡面不能直接return outPut()因為這樣得到的是圖片流,是無法正常顯示的。

public function captcha()
    {
        $captcha = new Captcha();
        $content = $captcha->doimg();
        return response($content, 200, ['Content-Length' => strlen($content)])->contentType('image/png');
    }
`驗證碼終於成功嵌到框架裡面去了。

解決了這個問題,我還是有點不甘心,明明tp框架自帶的驗證碼,卻要這樣來寫,總感覺哪裡怪怪的。 抱著試一試的心態我把原tp5.0框架根目錄下面的composer.json檔案刪掉替換成tp5.1新生成的composer.json,再次composer require topthink/think-captcha 終於成功了,問題的本身就出在框架上,在網上拷貝的小夥伴注意了,千萬不要隨便down別人的資源,否則後果很嚴重

久違的小黑框,em~ 在這裡插入圖片描述