分享PHP header函数使用教程


Posted in PHP onSeptember 05, 2013
<?php 
// fix 404 pages: 
header('HTTP/1.1 200 OK'); 
// set 404 header: 
header('HTTP/1.1 404 Not Found'); 
// set Moved Permanently header (good for redrictions) 
// use with location header 
header('HTTP/1.1 301 Moved Permanently'); 
// redirect to a new location: 
header('Location: http://www.example.org/'); 
// redrict with delay: 
header('Refresh: 10; url=http://www.example.org/'); 
print 'You will be redirected in 10 seconds'; 
// you could also use the HTML syntax:// <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'); 
// content language (en = English) 
header('Content-language: en'); 
// last modified (good for caching) 
$time = time() ? 60; // or filemtime($fn), etc 
header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT'); 
// header for telling the browser that the content 
// did not get changed 
header('HTTP/1.1 304 Not Modified'); 
// set content length (good for caching): 
header('Content-Length: 1234'); 
// Headers for an download: 
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'); 
// Disable caching of the current document: 
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 pastheader('Pragma: no-cache'); 
// set content type: 
header('Content-Type: text/html; charset=iso-8859-1'); 
header('Content-Type: text/html; charset=utf-8'); 
header('Content-Type: text/plain'); 
// plain text file 
header('Content-Type: image/jpeg'); 
// JPG picture 
header('Content-Type: application/zip'); 
// ZIP file 
header('Content-Type: application/pdf'); 
// PDF file 
header('Content-Type: audio/mpeg'); 
// Audio MPEG (MP3,…) file 
header('Content-Type: application/x-shockwave-flash'); 
// Flash animation// show sign in box 
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连接Oracle数据库
Oct 09 PHP
Discuz 模板引擎的封装类代码
Jul 18 PHP
Apache环境下PHP利用HTTP缓存协议原理解析及应用分析
Feb 16 PHP
php中XMLHttpRequest(Ajax)不能设置自定义的Referer的解决方法
Nov 26 PHP
PHP中集成PayPal标准支付的实现方法分享
Feb 06 PHP
php curl基本操作详解
Jul 23 PHP
分享下页面关键字抓取components.arrow.com站点代码
Jan 30 PHP
php中删除数组的第一个元素和最后一个元素的函数
Mar 07 PHP
php定义一个参数带有默认值的函数实例分析
Mar 16 PHP
Yii2实现自定义独立验证器的方法
May 05 PHP
php基于自定义函数记录log日志方法
Jul 21 PHP
ThinkPHP5框架中使用JWT的方法示例
Jun 03 PHP
php增删改查示例自己写的demo
Sep 04 #PHP
php使用异或实现的加密解密实例
Sep 04 #PHP
PHP中数组定义的几种方法
Sep 01 #PHP
对淘宝URL中ID提取的PHP代码
Sep 01 #PHP
怎么在Windows系统中搭建php环境
Aug 31 #PHP
深入解析php中的foreach函数
Aug 31 #PHP
如何使用php输出时间格式
Aug 31 #PHP
You might like
解析VS2010利用VS.PHP插件调试PHP的方法
2013/07/19 PHP
关于php程序报date()警告的处理(date_default_timezone_set)
2013/10/22 PHP
PHP中如何实现常用邮箱的基本判断
2014/01/07 PHP
javascript得到XML某节点的子节点个数的脚本
2008/10/11 Javascript
JavaScript 面向对象编程(2) 定义类
2010/05/18 Javascript
mailto的使用技巧分享
2012/12/21 Javascript
JS远程获取网页源代码实例
2013/09/05 Javascript
JS根据变量保存方法名并执行方法示例
2014/04/04 Javascript
jQuery动态修改超链接地址的方法
2015/02/13 Javascript
D3.js中data(), enter() 和 exit()的问题详解
2015/08/17 Javascript
jquery实现左右无缝轮播图
2020/07/31 Javascript
利用Angularjs和Bootstrap前端开发案例实战
2016/08/27 Javascript
jQuery如何防止Ajax重复提交
2016/10/14 Javascript
JS作用域链详解
2017/06/26 Javascript
JS一个简单的注册页面实例
2017/09/05 Javascript
JavaScript实现的拼图算法分析
2019/02/13 Javascript
利用es6 new.target来对模拟抽象类的方法
2019/05/10 Javascript
小程序点击图片实现png转jpg
2019/10/22 Javascript
js实现数据导出为EXCEL(支持大量数据导出)
2020/03/31 Javascript
vue实现页面切换滑动效果
2020/06/29 Javascript
python实现simhash算法实例
2014/04/25 Python
简化Python的Django框架代码的一些示例
2015/04/20 Python
python解决js文件utf-8编码乱码问题(推荐)
2018/05/02 Python
深入浅析Python代码规范性检测
2020/07/31 Python
Python 字典一个键对应多个值的方法
2020/09/29 Python
一款利用html5和css3实现的3D立方体旋转效果教程
2016/04/26 HTML / CSS
CSS3 实现飘动的云朵动画
2020/12/01 HTML / CSS
廉价航班、机票和酒店:JustFly
2018/02/07 全球购物
马来西亚演唱会订票网站:StubHub马来西亚
2018/10/18 全球购物
法国高保真音响和家庭影院商店:Son Video
2019/04/26 全球购物
生产部岗位职责范文
2014/02/07 职场文书
公安领导班子四风问题个人整改措施思想汇报
2014/10/09 职场文书
优秀党务工作者先进事迹材料
2014/12/25 职场文书
SQL Server2019数据库之简单子查询的具有方法
2021/04/27 SQL Server
python实现简单的聊天小程序
2021/07/07 Python
Vue中Object.assign清空数据报错的解决方案
2022/03/03 Vue.js