qrcodeChajian.php 667 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * 创建二维码
  4. */
  5. include_once(ROOT_PATH.'/include/phpqrcode/phpqrcode.php');
  6. class qrcodeChajian extends Chajian
  7. {
  8. public function show($url='')
  9. {
  10. if($url=='')$url = URL;
  11. $errorCorrectionLevel = 'L'; // 纠错级别:L、M、Q、H
  12. $matrixPointSize = 6; // 点的大小:1到10
  13. $margin = 1; //表示二维码周围边框空白区域间距值;
  14. $bo = QRcode::png($url, false, $errorCorrectionLevel, $matrixPointSize, $margin, false);
  15. return $bo;
  16. }
  17. }
粤ICP备19079148号