我如何在QrCode库php中设置链接

时间:2017-11-05 07:43:48

标签: php qr-code

非常简单,可能会问,之前,我不知道...在我的网站上我集成Qrcode库(PHP)我想设置Qr Image链接到我的网站这是我的代码。

    QRcode::png('Hello World', $filename, $errorCorrectionLevel, $matrixPointSize, 2);  

    echo '<img src="'.$PNG_WEB_DIR.basename($filename).'" /><hr/>';  

非常感谢您的帮助。谢谢

1 个答案:

答案 0 :(得分:0)

知道了,只需在png()函数的第一个参数中传递链接。

 QRcode::png('http://www.example.com', $filename, $errorCorrectionLevel, $matrixPointSize, 2);  

echo '<img src="'.$PNG_WEB_DIR.basename($filename).'" /><hr/>';  

感谢整个stackover flow社区