mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-04 13:00:05 +08:00
68 lines
1.8 KiB
PHP
Executable File
68 lines
1.8 KiB
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Devil
|
|
// +----------------------------------------------------------------------
|
|
namespace app\index\controller;
|
|
|
|
/**
|
|
* 二维码生成控制层
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 0.0.1
|
|
* @datetime 2016-12-01T21:51:08+0800
|
|
*/
|
|
class QrCode extends Common
|
|
{
|
|
/**
|
|
* [__construct 构造方法]
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* 二维码显示
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @datetime 2019-04-16T21:52:09+0800
|
|
*/
|
|
public function Index()
|
|
{
|
|
$params = input();
|
|
if(empty($params['content']))
|
|
{
|
|
$this->assign('msg', '内容参数为空');
|
|
return $this->fetch('public/tips_error');
|
|
}
|
|
|
|
(new \base\Qrcode())->View($params);
|
|
}
|
|
|
|
/**
|
|
* 二维码下载
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @datetime 2019-04-16T21:52:18+0800
|
|
*/
|
|
public function Download()
|
|
{
|
|
$params = input();
|
|
if(empty($params['url']))
|
|
{
|
|
$this->assign('msg', 'url参数为空');
|
|
return $this->fetch('public/tips_error');
|
|
}
|
|
|
|
(new \base\Qrcode())->Download($params);
|
|
}
|
|
}
|
|
?>
|