mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | Think.Admin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://think.ctolog.com
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\index\controller;
|
||
|
||
use service\HttpService;
|
||
use service\ToolsService;
|
||
use think\Controller;
|
||
use think\Db;
|
||
use think\Request;
|
||
use Wechat\Lib\Tools;
|
||
|
||
/**
|
||
* 网站入口控制器
|
||
* 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 test()
|
||
{
|
||
$json = json_decode(file_get_contents('citys.json'), true);
|
||
// dump($json);
|
||
foreach ($json as $key => $vo) {
|
||
dump(Db::name('DataRegion')->insert(['code' => $key, 'name' => $vo]));
|
||
}
|
||
}
|
||
|
||
public function wuliu()
|
||
{
|
||
$order = '444500528707';
|
||
dump(ToolsService::express($order));
|
||
}
|
||
|
||
}
|