PHP header()函数常用方法总结


Posted in PHP onApril 11, 2014

//定义编码

header( 'Content-Type:text/html;charset=utf-8 ');

//Atom
header('Content-type: application/atom+xml');

//CSS
header('Content-type: text/css');

//Javascript
header('Content-type: text/javascript');

//JPEG Image
header('Content-type: image/jpeg');

//JSON
header('Content-type: application/json');

//PDF
header('Content-type: application/pdf');

//RSS
header('Content-Type: application/rss+xml; charset=ISO-8859-1');

//Text (Plain)
header('Content-type: text/plain');

//XML
header('Content-type: text/xml');

// 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 相关文章推荐
PHP MSSQL 存储过程的方法
Dec 24 PHP
用php或asp创建网页桌面快捷方式的代码
Mar 23 PHP
php笔记之:php函数range() round()和list()的使用说明
Apr 26 PHP
深入php socket的讲解与实例分析
Jun 13 PHP
教你如何在CI框架中使用 .htaccess 隐藏url中index.php
Jun 09 PHP
PHP使用mysql_fetch_object从查询结果中获取对象集的方法
Mar 18 PHP
php隐藏实际地址的文件下载方法
Apr 18 PHP
支持中文、字母、数字的PHP验证码
May 04 PHP
PHP之十六个魔术方法详细介绍
Nov 01 PHP
CI框架实现优化文件上传及多文件上传的方法
Jan 04 PHP
php解决约瑟夫环算法实例分析
Sep 30 PHP
浅谈如何提高PHP代码的质量
May 28 PHP
开源php中文分词系统SCWS安装和使用实例
Apr 11 #PHP
PHP获取网页标题的3种实现方法代码实例
Apr 11 #PHP
PHP动态生成javascript文件的2个例子
Apr 11 #PHP
php实现数组筛选奇数和偶数示例
Apr 11 #PHP
php求正负数数组中连续元素最大值示例
Apr 11 #PHP
PHP入门经历和学习过程分享
Apr 11 #PHP
Session的工作机制详解和安全性问题(PHP实例讲解)
Apr 10 #PHP
You might like
php 智能404跳转代码,适合换域名没改变目录的网站
2010/06/04 PHP
php微信支付之APP支付方法
2015/03/04 PHP
js实现全国省份城市级联下拉菜单效果代码
2015/09/07 Javascript
深入解析JavaScript中函数的Currying柯里化
2016/03/19 Javascript
jQuery插件easyUI实现通过JS显示Dialog的方法
2016/09/16 Javascript
javascript this详细介绍
2016/09/19 Javascript
关于Vue.js 2.0的Vuex 2.0 你需要更新的知识库
2016/11/30 Javascript
BootStrap学习笔记之nav导航栏和面包屑导航
2017/01/03 Javascript
BootStrap模态框不垂直居中的解决方法
2017/10/19 Javascript
nodejs超出最大的调用栈错误问题
2017/12/27 NodeJs
微信小程序解除10个请求并发限制
2018/12/18 Javascript
使用React手写一个对话框或模态框的方法示例
2019/04/25 Javascript
深入理解 TypeScript Reflect Metadata
2019/12/12 Javascript
js实现移动端吸顶效果
2020/01/08 Javascript
基于jsbarcode 生成条形码并将生成的条码保存至本地+源码
2020/04/27 Javascript
Python的Django框架中if标签的相关使用
2015/07/15 Python
Python的Flask框架标配模板引擎Jinja2的使用教程
2016/07/12 Python
浅析python中的分片与截断序列
2016/08/09 Python
Python利用pandas计算多个CSV文件数据值的实例
2018/04/19 Python
python批量修改文件编码格式的方法
2018/05/31 Python
Python multiprocessing多进程原理与应用示例
2019/02/28 Python
HTML的form表单和django的form表单
2019/07/25 Python
python文档字符串(函数使用说明)使用详解
2019/07/30 Python
Python3.0 实现决策树算法的流程
2019/08/08 Python
python中for in的用法详解
2020/04/17 Python
Pycharm Git 设置方法
2020/09/15 Python
html5之Canvas路径绘图、坐标变换应用实例
2012/12/26 HTML / CSS
公务员综合考察材料
2014/02/01 职场文书
2014年学习雷锋活动总结
2014/03/01 职场文书
小学新教师个人总结
2015/02/05 职场文书
幼儿园小班工作总结2015
2015/04/25 职场文书
廉政承诺书2015
2015/04/28 职场文书
大国崛起英国观后感
2015/06/02 职场文书
史上最全书信经典范文大全(建议收藏)
2019/07/10 职场文书
在Java中Collection的一些常用方法总结
2021/06/13 Java/Android
Redis基本数据类型List常用操作命令
2022/06/01 Redis