mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://think.ctolog.com
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zoujingli/ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\index\controller;
|
||
|
||
use think\Controller;
|
||
|
||
/**
|
||
* 网站入口控制器
|
||
* Class Index
|
||
* @package app\index\controller
|
||
* @author Anyon <zoujingli@qq.com>
|
||
* @date 2017/04/05 10:38
|
||
*/
|
||
class Index extends Controller
|
||
{
|
||
|
||
/**
|
||
* 网站入口
|
||
*/
|
||
public function index()
|
||
{
|
||
$this->redirect('@admin');
|
||
}
|
||
|
||
public function qrc()
|
||
{
|
||
$wechat = load_wechat('Extends');
|
||
for ($i = 10; $i < 90; $i++) {
|
||
$qrc = $wechat->getQRCode($i, 1);
|
||
print_r($qrc);
|
||
}
|
||
|
||
}
|
||
|
||
}
|