当前位置: 代码迷 >> PHP >> 透过 PHP类库 phpqrcode 生成 二维码
  详细解决方案

透过 PHP类库 phpqrcode 生成 二维码

热度:489   发布时间:2016-04-28 23:13:31.0
通过 PHP类库 phpqrcode 生成 二维码
<?php//phpqrcode 在下面的附件中提供下载require_once("phpqrcode/phpqrcode.php");$str = 'http://soundhorizon.iteye.com';$errorCorrectionLevel = 'L';$matrixPointSize = 3; // 图像像素比例QRcode::png($str, false, $errorCorrectionLevel, $matrixPointSize);exit;?>