-- 创造无限可能

ThinkPhp报错:Cannot use object of type think\response\Html as array

2022-03-28 14:08:38
488 人浏览 5 人点赞
有用,点赞支持一下


问题:设置captcha报错

    public function captcha()
    {
        $captcha_data = ThinkCaptcha::create(null, true);
        $captcha_id = md5(uniqid(null, true));
        // 验证码10分钟有效
        Cache::set($captcha_id, $captcha_data[ 'code' ], 600);
        return success(0, '', [ 'id' => $captcha_id, 'img' => $captcha_data[ 'img' ] ]);
    }

原因:captcha版本
解决:更新、降低captcha版本