在代码中我有一个值字符串作为测试,我在扫描qr-code后得到一个输出。我想将qr-code图像存储在一个文件夹中。
include 'phpqrcode/qrlib.php';
$value = "test";
if($count > 0)
{
QRcode::png('code data text', 'filename.png'); // creates file
$result = QRcode::png($values); // creates code image and outputs it
directly into browser
}
答案 0 :(得分:0)
您有3个选项,
coded data text
存储在文件或数据库中QRcode::text($codeContents)
)QRcode::png($codeContents, $pngAbsoluteFilePath);