控制器
http控制器需要继承
Request
包含以下方法
// get信息
public function get($key = null, $default = null)
// post信息
public function post($key = null, $default = null)
// 终端下的 $argv信息
public function arg($i = null, $default = null)
// response 信息 = get + post
public function res($key = null, $default = null)
public function cookie($key = null, $default = null)
public function input()
// 返回json信息
public function json()
// 返回上传的文件信息
public function file()
// 返回请求的方法
public function method()
// 是否是json格式
public function isJson()
public function ip()
public function server($name = null, $default = null)
// request id
public function id()
通过 Response 可获取 Reuest 对象
$this->response->getHttpRequest() === $this->request
// 设置
$this->session()->set('a',123);
// 获取
$this->session()->get('a');
// 删除
$this->session()->del('a');
// 获取所有的
$this->session()->get();
// 获取session id