php之header的不同用法总结(实例讲解)

函数的作用是:发送一个原始 HTTP 标头[Http Header]到客户端。

rush:xhtml;"> header(string,replace,http_response_code) /*string:必需。规定要发送的报头字符串。 replace:可选。指示该报头是否替换之前的报头,或添加第二个报头。 认是 true(替换)。false(允许相同类型的多个报头)。 http_response_code:可选。把 HTTP 响应代码强制为指定的值。*/

注意:必须在任何实际的输出被发送之前调用 header() 函数

2、 用法1:跳转页

rush:xhtml;"> header("Location:https://baidu.com"); //正常跳转 header('Refresh: 3; url=https://www.baidu.com'); //3s后跳转 //在header作跳转时,避免发生错误后,代码继续执行,一般加个exit;

用法2:

声明content-type(我经常拿来决解乱码)

rush:xhtml;"> header('content-type:text/html;charset=utf-8');

用法3:

返回响应状态码

rush:xhtml;"> header('HTTP/1.1 403 Forbidden');

用法4:

执行下载操作(隐藏文件的位置)

rush:xhtml;"> header('Content-Type: application/octet-stream'); //设置内容类型 header('Content-disposition: attachment; filename="example.zip"');//设置MIME用户作为附件 header('Content-transfer-encoding: binary'); //设置传输方式 header('Content-Length: '.filesize('example.zip')); //设置内容长度

用法5:

控制浏览器缓存

rush:xhtml;"> header( 'Expires: Mon,26 Jul 1997 05:00:00 GMT' ); //如果服务器上的网页经常变化,就把它设置为-1,表示立即过期 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' );

用法6:

3、更多实例

rush:xhtml;"> PHP // ok header('HTTP/1.1 200 OK'); //设置一个404头: header('HTTP/1.1 404 Not Found'); //设置地址被永久的重定向 header('HTTP/1.1 301 Moved Permanently'); //转到一个新地址 header('Location: http://www.example.org/'); //文件延迟转向: header('Refresh: 10; url=http://www.example.org/'); print 'You will be redirected in 10 seconds'; //当然,也可以使用html语法实现 // PHP: header('X-Powered-By: PHP/4.4.0'); header('X-Powered-By: Brain/0.6b'); //文档语言 header('Content-language: en'); //告诉浏览器最后一次修改时间 $time = time() - 60; // or filemtime($fn),etc header('Last-Modified: '.gmdate('D,d M Y H:i:s',$time).' GMT'); //告诉浏览器文档内容没有发生改变 header('HTTP/1.1 304 Not Modified'); //设置内容长度 header('Content-Length: 1234'); //设置为一个下载类型 header('Content-Type: application/octet-stream'); header('Content-disposition: attachment; filename="example.zip"'); header('Content-transfer-encoding: binary'); // load the file to send: readfile('example.zip'); // 对当前文档禁用缓存 header('Cache-Control: no-cache,no-store,max-age=0,must-revalidate'); header('Expires: Mon,26 Jul 1997 05:00:00 GMT'); // Date in the past header('Pragma: no-cache'); //设置内容类型: header('Content-Type: text/html; charset=iso-8859-1'); header('Content-Type: text/html; charset=utf-8'); header('Content-Type: text/plain'); //纯文本格式 header('Content-Type: image/jpeg'); //JPG图片 header('Content-Type: application/zip'); // ZIP文件 header('Content-Type: application/pdf'); // PDF文件 header('Content-Type: audio/mpeg'); // 音频文件 header('Content-Type: application/x-shockwave-flash'); //Flash动画 //显示登陆对话框 header('HTTP/1.1 401 Unauthorized'); header('WWW-Authenticate: Basic realm="Top Secret"'); print 'Text that will be displayed if the user hits cancel or '; print 'enters wrong login data'; ?>

以上这篇PHP之header的不同用法总结(实例讲解)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


服务器优化必备:深入了解PHP8底层开发原理
Golang的网络编程:如何快速构建高性能的网络应用?
Golang和其他编程语言的对比:为什么它的开发效率更高?
PHP8底层开发原理揭秘:如何利用新特性创建出色的Web应用
将字符重新排列以形成回文(如果可能)在C++中
掌握PHP8底层开发原理和新特性:创建高效可扩展的应用程序
服务器性能优化必学:掌握PHP8底层开发原理
PHP8新特性和底层开发原理详解:优化应用性能的终极指南
将 C/C++ 代码转换为汇编语言
深入研究PHP8底层开发原理:创建高效可扩展的应用程序
C++程序查找法向量和迹
PHP8底层开发原理实战指南:提升服务器效能
重排数组,使得当 i 为偶数时,arr[i] >= arr[j],当 i 为奇数时,arr[i] <= arr[j],其中 j < i,使用 C++ 语言实现
Golang的垃圾回收:为什么它可以减少开发人员的负担?
C++程序:将一个数组的所有元素复制到另一个数组中
Golang:构建智能系统的基石
为什么AI开发者应该关注Golang?
在C和C++中,逗号(comma)的用法是用来分隔表达式或语句
PHP8底层开发原理解析及新特性应用实例
利用PHP8底层开发原理解析新特性:如何构建出色的Web应用