php header函数的详解
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-14 21:07:26 浏览: 评论:0
header函数在php中是发前一些头部信息的,如果我们可以直接使用它来做301跳转等,下面我来总结关于header函数用法与一些常用见问题解决方法。
发送一个原始 HTTP 标头[Http Header]到客户端,标头 (header) 是服务器以 HTTP 协义传 HTML 资料到浏览器前所送出的字串,在标头与 HTML 文件之间尚需空一行分隔
例1,代码如下:
- <?PHP
- Header(“Location: http://www.phpfensi.com”;);
- exit; //在每个重定向之后都必须加上“exit”,避免发生错误后,继续执行。
- ?>
禁止页面在IE中缓存,代码如下:
- <?PHP
- 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-store, no-cache, must-revalidate’ );
- header( ‘Cache-Control: post-check=0, pre-check=0′, false );
- header( ‘Pragma: no-cache’ ); //兼容http1.0和https
- ?>
- //CacheControl = no-cache
- //Pragma=no-cache
- //Expires = -1
实现文件下载,代码如下:
- header('Content-Type: application/octet-stream');//设置内容类型
- header('Content-Disposition: attachment; filename="example.zip"'); //设置MIME用户作为附件下载 如果将attachment换成inline意思为在线打开
- header('Content-Transfer-Encoding: binary');//设置传输方式
- header('Content-Length: '.filesize('example.zip'));//设置内容长度
- // load the file to send:
- readfile('example.zip');//读取需要下载的文件
php的函数header()可以向浏览器发送Status标头,代码如下:
header(”Status: 404 Not Found”)。
但是我发现实际上浏览器返回的响应却是如下代码:
- // ok
- header(‘HTTP/1.1 200 OK’);
- //设置一个404头:
- header(‘HTTP/1.1 404 Not Found’);
- //设置地址被永久的重定向
- header(‘HTTP/1.1 301 Moved Permanently’);
- HTTP/1.x 200 OK
- Date: Thu, 03 Aug 2006 07:49:11 GMT
- Server: Apache/2.0.55 (Win32) PHP/5.0.5
- X-Powered-By: PHP/5.0.5
- Status: 404 Not Found
- //开源软件:phpfensi.com
- Content-Length: 0
- Keep-Alive: timeout=15, max=98
- Connection: Keep-Alive
- Content-Type: text/html
注意事项有以下几点:
•Location和":"之间不能有空格,否则会出现错误(注释,我刚测试了,在我本地环境下,没有跳转页面,但是也没有报错,不清楚什么原因);
•在用header前不能有任何的输出(注释,这点大家都知道的,如果header之前有任何的输出,包括空白,就会出现header already sent by xxx的错误);
•header 后面的东西还会执行的.
Tags: header函数 php函数详解
- 上一篇:php字符串分割函数的总结
- 下一篇:php中iconv函数用法详解介绍
相关文章
- ·php 中header函数的用法详解(2014-05-20)
- ·php header函数中隐藏php信息详解(2014-06-08)
- ·php中header函数后是否应该有exit(2014-06-11)
- ·PHP Header函数跳转时需要注意的一些问题(2014-09-12)
- ·PHP header函数一此常用的用法详解(2014-09-13)
- ·php header函数实现代码(2014-09-19)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)