Qrcode.php 564 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace app\home\controller;
  3. /**
  4. *
  5. *
  6. * ----------------------------------------------------------------------------
  7. *
  8. * 控制器
  9. */
  10. class Qrcode extends BaseMall
  11. {
  12. public function index()
  13. {
  14. include_once root_path() . 'extend/qrcode/phpqrcode.php';
  15. $value = strip_tags(htmlspecialchars_decode(input('get.url')));
  16. $errorCorrectionLevel = "L";
  17. $matrixPointSize = "4";
  18. \QRcode::png($value, false, $errorCorrectionLevel, $matrixPointSize, 2);
  19. exit;
  20. }
  21. }