乱码场景
解决方案
执行生成二维码的那句代码后die或exit一下就可以了:
public function index() { Vendor('phpqrcode.phpqrcode'); $url="https://www.wangchuangcode.cn"; $errorCorrectionLevel =intval(2) ;//容错级别 $matrixPointSize = intval(4);//生成图片大小 //生成二维码图片 $object = new \QRcode(); $object->png($url, false, $errorCorrectionLevel, $matrixPointSize, 2); die; }
推荐教程:PHP视频教程
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!