QRcodeService.php 348 B

12345678910111213
  1. <?php
  2. /**
  3. *生成二维码
  4. */
  5. $path = Yii::getPathOfAlias('application');
  6. require_once($path."/vendors/qrcode/qrlib.php");
  7. class QRcodeService extends Service{
  8. public function CreatQrcode($data,$imagefile,$imagesize = 8){
  9. $errorCorrectionLevel = 'L';
  10. QRcode::png($data,$imagefile,$errorCorrectionLevel,$imagesize,2);
  11. }
  12. }
  13. ?>