-
-
Header("Location: http://www.php.net");
- ?>
复制代码
强制用户每次访问这个页面时获取最新资料,而不是使用存在客户端的缓存。
-
-
//告诉浏览器此页面的过期时间(用格林威治时间表示),只要是已经过去的日期即可。
- header("Expires: Mon, 26 Jul 1970 05:00:00 GMT");
- //告诉浏览器此页面的最后更新日期(用格林威治时间表示)也就是当天,目的就是强迫浏览器获取最新资料
- header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");
- //告诉客户端浏览器不使用缓存
- header("Cache-Control: no-cache, must-revalidate");
- //参数(与以前的服务器兼容),即兼容HTTP1.0协议
- header("Pragma: no-cache");
- //输出MIME类型
- header("Content-type: application/file");
- //文件长度
- header("Content-Length: 227685");
- //接受的范围单位
- header("Accept-Ranges: bytes");
- //缺省时文件保存对话框中的文件名称
- header("Content-Disposition: attachment; filename=$filename");
- ?>
复制代码
输出状态值到浏览器,主要用于访问权限控制
-
-
header('HTTP/1.1 401 Unauthorized');
- header('status: 401 Unauthorized');
- ?>
-
复制代码
比如要限制一个用户不能访问该页,则可设置状态为404,如下所示,这样浏览器就显示为即该页不存在
-
-
header('HTTP/1.1 404 Not Found');
- header("status: 404 Not Found");
- ?>
复制代码
注意: 传统的标头一定包含下面三种标头之一,并只能出现一次。 Content-Type: xxxx/yyyy Location: xxxx:yyyy/zzzz Status: nnn xxxxxx 在新的多型标头规格 (Multipart MIME) 方可以出现二次以上。
以上就是有关php header头信息的内容介绍,更多内容可以参考:php 文件头部(header)信息详解 。
举一些具体的例子。
例1: 本例使浏览器重定向到 PHP 的官方网站。
-
- Header("Location: http://www.php.net"); exit;
复制代码
例2: 要使用者每次都能得到最新的资料,而不是 Proxy 或 cache 中的资料,可以使用下列的标头
-
- header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
- header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT"); header("Cache-Control: no-cache, must-revalidate");
- header("Pragma: no-cache");
复制代码
例3: 让使用者的浏览器出现找不到档案的信息。
-
- header("Status: 404 Not Found");
复制代码
例4:让使用者下载档案。
-
- header("Content-type: application/x-gzip");
- header("Content-Disposition: attachment; filename=文件名");
- header("Content-Description: PHP3 Generated Data");
复制代码
说明:
不管页面有多少header,它会执行最后一个,不过是有条件的,例如:
-
- header('Location:http://bbs.it-home.org');
- header('Location:http://www.g.cn');
- header('Location:http://www.baidu.com');
- //跳到百度
- header('Location:http://bbs.it-home.org');echo '程序员之家';
- header('Location:http://www.g.cn');
- header('Location:http://www.baidu.com');
- //跳到google
复制代码
|