#### Response
~~~
/**
* 构造函数
* @access public
* @param mixed $data 输出数据
* @param int $code
* @param array $header
* @param array $options 输出参数
*/
$response = new Response($data = '', $code = 200, array $header = [], $options = []);
/**
* 创建Response对象
* @access public
* @param mixed $data 输出数据
* @param string $type 输出类型
* @param int $code
* @param array $header
* @param array $options 输出参数
* @return Response|JsonResponse|ViewResponse|XmlResponse|RedirectResponse|JsonpResponse
*/
Response::create($data = '', $type = '', $code = 200, array $header = [], $options = []);
/**
* 发送数据到客户端
* @access public
* @return mixed
* @throws \InvalidArgumentException
*/
$response->send();
/**
* 处理数据
* @access protected
* @param mixed $data 要处理的数据
* @return mixed
*/
$this->output($data);
/**
* 输出的参数
* @access public
* @param mixed $options 输出参数
* @return $this
*/
$response->options($options = []);
/**
* 输出数据设置
* @access public
* @param mixed $data 输出数据
* @return $this
*/
$response->data($data);
/**
* 设置响应头
* @access public
* @param string|array $name 参数名
* @param string $value 参数值
* @return $this
*/
$response->header($name, $value = null);
/**
* 设置页面输出内容
* @param $content
* @return $this
*/
$response->content($content);
/**
* 发送HTTP状态
* @param integer $code 状态码
* @return $this
*/
$response->code($code);
/**
* LastModified
* @param string $time
* @return $this
*/
$response->lastModified($time);
/**
* Expires
* @param string $time
* @return $this
*/
$response->expires($time);
/**
* ETag
* @param string $eTag
* @return $this
*/
$response->eTag($eTag);
/**
* 页面缓存控制
* @param string $cache 状态码
* @return $this
*/
$response->cacheControl($cache);
/**
* 页面输出类型
* @param string $contentType 输出类型
* @param string $charset 输出编码
* @return $this
*/
$response->contentType($contentType, $charset = 'utf-8');
/**
* 获取头部信息
* @param string $name 头部名称
* @return mixed
*/
$response->getHeader($name = '');
/**
* 获取原始数据
* @return mixed
*/
$response->getData();
/**
* 获取输出数据
* @return mixed
*/
$response->getContent();
/**
* 获取状态码
* @return integer
*/
$response->getCode();
~~~