Qrcode.php 928 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace app\home\controller;
  3. /**
  4. * ============================================================================
  5. *
  6. * ============================================================================
  7. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  8. * 网站地址: https://www.valimart.net/
  9. * ----------------------------------------------------------------------------
  10. *
  11. * ============================================================================
  12. * 控制器
  13. */
  14. class Qrcode extends BaseMall {
  15. public function index() {
  16. include_once root_path(). 'extend/qrcode/phpqrcode.php';
  17. $value = strip_tags(htmlspecialchars_decode(input('get.url')));
  18. $errorCorrectionLevel = "L";
  19. $matrixPointSize = "4";
  20. \QRcode::png($value, false, $errorCorrectionLevel, $matrixPointSize,2);
  21. exit;
  22. }
  23. }