Response 相应信息给客户端的对象

通过 Response 可获取 Reuest 对象

  1. $this->response->getHttpRequest() === $this->request

其他常用方法

  1. // 设置头部信息
  2. $this->response->header();
  3. // 设置cookies 参数方法 同 setcookie 一直
  4. $this->response->cookie();
  5. // session 对象
  6. $this->response->session() === $this->session()
  7. // 直接输出信息 推荐直接在控制器 return 信息;
  8. $this->response->write('hello');