12345678910111213141516171819202122232425262728 |
- <?php
- namespace app\home\controller;
- /**
- * ============================================================================
- *
- * ============================================================================
- * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
- * 网站地址: https://www.valimart.net/
- * ----------------------------------------------------------------------------
- *
- * ============================================================================
- * 控制器
- */
- class Qrcode extends BaseMall {
- public function index() {
- include_once root_path(). 'extend/qrcode/phpqrcode.php';
- $value = strip_tags(htmlspecialchars_decode(input('get.url')));
- $errorCorrectionLevel = "L";
- $matrixPointSize = "4";
- \QRcode::png($value, false, $errorCorrectionLevel, $matrixPointSize,2);
- exit;
- }
- }
|