Response类方法

DoitPHP核心类Response用于返回服务器信息,其类方法均支持静态调用。其中常用的类方法(redirectUrl()、showMsg()、ajax())已被Controller基类所调用,其余类方法不常用。下面将这不常用的类方法说明一下:

一、类方法说明

1、charset($encode = 'UTF-8')

|设置页面编码
|参数说明:
|$encode : 编码名称,默认为:utf-8

举例说明:

  1. 例一、
  2. Response::charset();
  3. echo '我爱北京天安门';

2、noCache()

|禁用浏览器缓存(header)
|参数说明:
|参数为空

举例说明:

  1. 例一、
  2. Response::noCache();

3、expires($seconds = 1800)

|设置网页生存周期(header)
|参数说明:
|$seconds : 生存周期(单位:秒)

举例说明:

  1. 例一、
  2. Response::expires(86400);

原文: http://www.doitphp.com/index/documentation/?articleid=27