
<?php
//后台公共类 权限验证 版权验证 系统升级
namespace app\admin\controller;
use think\Controller;
use think\Db;
use think\response\Json;
use think\facade\Session;
use think\App;
use think\facade\Request;
class ba
/**
* 构造方法
* @param Request $request Request对象
* @access public
*/
public function __construct(Request $request, App $app)
{
Session::start();
// dump($request);
parent::__construct($request,$app);
}
/*
* 初始化操作
...
?>
最佳答案