<?php
//phpqrcode 在下面的附件中提供下载
require_once("phpqrcode/phpqrcode.php");
$str = 'http://soundhorizon.iteye.com';
$errorCorrectionLevel = 'L';
$matrixPointSize = 3; // 图像像素比例
QRcode::png($str, false, $errorCorrectionLevel, $matrixPointSize);
exit;
?>
<?php
//phpqrcode 在下面的附件中提供下载
require_once("phpqrcode/phpqrcode.php");
$str = 'http://soundhorizon.iteye.com';
$errorCorrectionLevel = 'L';
$matrixPointSize = 3; // 图像像素比例
QRcode::png($str, false, $errorCorrectionLevel, $matrixPointSize);
exit;
?>