php生成二维码代码

时间:2022-11-17 09:19:04

先见一个文件夹,里面php页面写入下面代码,在建一个子文件img,qrcode.php,在建一个class,phpqrcode.php这个页面代码网上有

<?php


include "class/phpqrcode.php";
    //二维码的内容
    $value = "hello";
    //二维码容错级别
    $errorCorrectionLevel = 'L';
    //二维码图片大小    
    $matrixPointSize = 15;            
    //生成二维码图片

    QRcode::png($value, 'img/qrcode.png', $errorCorrectionLevel, $matrixPointSize, 2);
    $QR = "img/qrcode.png";
    echo "<img src='$QR' />";


?>