分享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 相关文章推荐
手把手教你使用DedeCms的采集的图文教程
Mar 11 PHP
PHP判断文件是否存在、是否可读、目录是否存在的代码
Oct 03 PHP
浅谈apache和nginx的rewrite的区别
Feb 22 PHP
php用正则表达式匹配URL的简单方法
Nov 12 PHP
推荐5款跨平台的PHP编辑器
Dec 25 PHP
PHP常用设计模式之委托设计模式
Feb 13 PHP
Android AsyncTack 异步任务实例详解
Nov 02 PHP
CI框架(CodeIgniter)实现的导入、导出数据操作示例
May 24 PHP
php+croppic.js实现剪切上传图片功能
Aug 14 PHP
实例讲解php实现多线程
Jan 27 PHP
PHP正则表达式处理函数(PCRE 函数)实例小结
May 09 PHP
Laravel jwt 多表(多用户端)验证隔离的实现
Dec 18 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
PHP中iconv函数知识汇总
2015/07/02 PHP
php处理复杂xml数据示例
2016/07/11 PHP
如何打开php的gd2库
2017/02/09 PHP
php根据地址获取百度地图经纬度的实例方法
2019/09/03 PHP
JQuery获取浏览器窗口内容部分高度的代码
2012/02/24 Javascript
基于jquery的时间段实现代码
2012/08/02 Javascript
Js操作Select大全(取值、设置选中等等)
2013/10/29 Javascript
不依赖Flash和任何JS库实现文本复制与剪切附源码下载
2015/10/09 Javascript
javaScript生成支持中文带logo的二维码(jquery.qrcode.js)
2017/01/03 Javascript
js实现微博发布小功能
2017/01/12 Javascript
bootstrap弹出层的多种触发方式
2017/05/10 Javascript
vue mixins组件复用的几种方式(小结)
2017/09/06 Javascript
angular 数据绑定之[]和{{}}的区别
2018/09/25 Javascript
JavaScript实现学生在线做题计时器功能
2018/12/05 Javascript
浅探express路由和中间件的实现
2019/09/30 Javascript
详解如何在Javascript中使用Object.freeze()
2020/10/18 Javascript
[50:50]完美世界DOTA2联赛PWL S3 Galaxy Racer vs Phoenix 第一场 12.10
2020/12/13 DOTA
在Python中使用HTML模版的教程
2015/04/29 Python
python操作mongodb根据_id查询数据的实现方法
2015/05/20 Python
Python 3实战爬虫之爬取京东图书的图片详解
2017/10/09 Python
Python实现繁体中文与简体中文相互转换的方法示例
2018/12/18 Python
Python反爬虫技术之防止IP地址被封杀的讲解
2019/01/09 Python
python使用thrift教程的方法示例
2019/03/21 Python
PyQt QCombobox设置行高的方法
2019/06/20 Python
pygame实现俄罗斯方块游戏(AI篇2)
2019/10/29 Python
Python序列化pickle模块使用详解
2020/03/05 Python
pycharm配置python 设置pip安装源为豆瓣源
2021/02/05 Python
利用Python批量识别电子账单数据的方法
2021/02/08 Python
伦敦最有品味的百货:Liberty London
2016/11/12 全球购物
一道输出判断型Java面试题
2014/10/01 面试题
资深生产主管自我评价
2013/09/22 职场文书
机械绘图员岗位职责
2013/11/19 职场文书
小学校园文化建设汇报材料
2014/08/19 职场文书
营销计划书
2015/01/17 职场文书
寒假生活随笔
2015/08/15 职场文书
如何自己动手写SQL执行引擎
2021/06/02 MySQL