当前位置: 首页 > 文档资料 > DoitPHP 帮助文档 >

4.10 Response类方法

优质
小牛编辑
133浏览
2023-12-01

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

类方法说明:

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

设置页面编码。

参数说明:
$encode : 编码名称,默认为:utf-8

举例说明:

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

2、noCache()

禁用浏览器缓存(header)。

参数说明:
参数为空

举例说明:

例一、
Response::noCache();

3、expires($seconds = 1800)

设置网页生存周期(header)。

参数说明:
$seconds : 生存周期(单位:秒)

举例说明:

例一、
Response::expires(86400);