欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

phpqrcode不能输出二维码,phpqrcode_PHP教程

程序员文章站 2024-01-27 10:38:40
...

phpqrcode不能输出二维码,phpqrcode

header('Content-Type: image/png');
include_once 'phpqrcode/qrlib.php';
$a = "http://www.play17.cn/play/wlogin.html";
ob_clean();
QRcode::png($a);

加入输出类型

header('Content-Type: image/png');

清除缓存ob_clean()

ob_clean();

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1068264.htmlTechArticlephpqrcode不能输出二维码,phpqrcode header ('Content-Type: image/png' ); include_once 'phpqrcode/qrlib.php' ; $a = "http://www.play17.cn/play/wlogin.html" ; ob_clean ();QRco...