PHP QR CODE生成二维码

 

用法:

<?php
include "./phpqrcode/phpqrcode.php";
$value="http://www.xxx.com";
$errorCorrectionLevel = "L";
$matrixPointSize = "4";
$file_path = false;
QRcode::png($value, $file_path, $errorCorrectionLevel, $matrixPointSize);
exit;
?>

 

$value  为二维码保存的内容。如果内容要换行, $value可以为$value="www.xx.com\n网站名称"

$errorCorrectionLevel  // 纠错级别:L、M、Q、H

$matrixPointSize  // 点的大小:1到10,用于手机端4就可以了


$file_path 为false时二维码输出到浏览器,为路径时输出到文件,如 file/aa.png

你可能感兴趣的:(code)