phpqrcode cannot output QR code, phpqrcode
<span>header</span>('Content-Type: image/png'<span>);
</span><span>include_once</span> 'phpqrcode/qrlib.php'<span>;
</span><span>$a</span> = "http://www.play17.cn/play/wlogin.html"<span>;
</span><span>ob_clean</span><span>();
QRcode</span>::png(<span>$a</span>);
Copy after login
Add output type
<span>header</span>('Content-Type: image/png');
Copy after login
Clear cache ob_clean()
<span>ob_clean</span>();
Copy after login
http://www.bkjia.com/PHPjc/1068264.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1068264.htmlTechArticlephpqrcode cannot output QR code, phpqrcode header ('Content-Type: image/png' ); include_once 'phpqrcode /qrlib.php' ; $a = "http://www.play17.cn/play/wlogin.html" ; ob_clean ();QRco...