php 二维码 生成报错Class ‘Endroid\QrCode\QrCode‘ not found

郎玮
2023-12-01
Class 'Endroid\QrCode\QrCode' not found

    /**
     * 生成二维码
     * @throws \Endroid\QrCode\Exception\InvalidWriterException
     */
    public function test(){

        $qrCode = new QrCode('Life is too short to be generating QR codes');

        header('Content-Type: '.$qrCode->getContentType());
        echo $qrCode->writeString();
        exit;
    }

开始写成功的二维码生成,换台服务器后不能正常显示,就报这个错。但代码上面已经用了 use 引用了
最后在最新的服务器上重新 composer install 安装了一遍,才解决这个错误

 类似资料: