Qrcode.php 798 B

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