1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
//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语法实现 // <meta http-equiv=”refresh” content=”10;http://www.example.org/ /> // override X-Powered-By: 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-shockw**e-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函数的常用http头设置
2020-10-06 18:01PHP教程网 PHP教程
这篇文章主要介绍了php header函数的常用http头设置,本文直接给出代码实例,代码中包含详细注释,需要的朋友可以参考下
延伸 · 阅读
- 2022-03-11Python 函数装饰器应用教程
- 2022-03-11Python全栈之文件函数和函数参数
- 2022-03-10简单谈谈centos7中配置php
- 2022-03-10C++ 函数的介绍
- 2022-03-10Python全栈之路正则函数
- 2022-03-10详解Python的函数与异常
- PHP教程
php 数组元素快速去重
本篇文章主要介绍了php数组元素快速去重的方法,具有很好的参考价值。下面跟着小编一起来看下吧...
- PHP教程
PHP里8个鲜为人知的安全函数分析
这篇文章主要介绍了PHP里8个鲜为人知的安全函数,较为详细的分析了addslashes、htmlentities、htmlspecialchars及md5等函数在PHP程序设计安全中所起到重要作用,非常...
- PHP教程
eclipse php wamp配置教程
这篇文章主要为大家详细介绍了eclipse php wamp配置教程,极其简单的php入门教程,感兴趣的小伙伴们可以参考一下...
- PHP教程
PHP之使用swoole统计在线人数和ID案例讲解
这篇文章主要介绍了PHP之使用swoole统计在线人数和ID案例讲解,本篇文章通过简要的案例,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参...
- PHP教程
PHP中使用匿名函数操作数据库的例子
这篇文章主要介绍了PHP中使用匿名函数操作数据库的例子,本文直接给出类的代码、使用例子、继承例子,需要的朋友可以参考下...
- PHP教程
Laravel框架使用Redis的方法详解
这篇文章主要介绍了Laravel框架使用Redis的方法,结合实例形式较为详细的分析了Laravel框架中Redis数据库配置、使用方法及相关操作注意事项,需要的朋友可以...
- PHP教程
PHP设计模式之迭代器模式Iterator实例分析【对象行为型】
这篇文章主要介绍了PHP设计模式之迭代器模式Iterator,结合实例形式分析了PHP迭代器模式Iterator相关概念、原理、实现方法与操作注意事项,需要的朋友可以参...
- PHP教程
PHP基于php_imagick_st-Q8.dll实现JPG合成GIF图片的方法
这篇文章主要介绍了PHP基于php_imagick_st-Q8.dll实现JPG合成GIF图片的方法,需要的朋友可以参考下 ...