php header示例代码(推荐)


Posted in PHP onSeptember 08, 2010
<?php 
/*** Function: PHP header() examples (PHP) 
** Desc: Some examples on how to use the header() function of PHPYou find a detailed tutorial at expertsrt.com (English) or at ffm.junetz.de (German).These is also a good help about caching at web-caching.com. 
** Example: see below. <br/><br/><b>Tip:</b> You can use these sites to check your headers: <a href="http://web-sniffer.net/">web-sniffer.net</a>, <a href="http://www.delorie.com/web/headers.html">delorie.com</a> or <a href="http://www.forret.com/projects/analyze/">www.forret.com</a>. 
** Author: Jonas John 
*/ // 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 实例化类的一点摘记
Mar 23 PHP
PHP Zip解压 文件在线解压缩的函数代码
May 26 PHP
php强制下载类型的实现代码
Apr 21 PHP
ubuntu下编译安装xcache for php5.3 的具体操作步骤
Jun 18 PHP
php调用shell的方法
Nov 05 PHP
php编写的抽奖程序中奖概率算法
May 14 PHP
PHP+JS实现大规模数据提交的方法
Jul 02 PHP
PHP简单获取网站百度搜索和搜狗搜索收录量的方法
Aug 23 PHP
php获取远程图片并下载保存到本地的方法分析
Oct 08 PHP
PHP实现的二分查找算法实例分析
Dec 19 PHP
PHP设计模式之注册树模式分析
Jan 26 PHP
php格式文件打开的四种方法
Feb 24 PHP
php下清空字符串中的HTML标签的代码
Sep 06 #PHP
在PHP中PDO解决中文乱码问题的一些补充
Sep 06 #PHP
检测png图片是否完整的php代码
Sep 06 #PHP
晋城吧对DiscuzX进行的前端优化要点
Sep 05 #PHP
用PHP将数据导入到Foxmail的实现代码
Sep 05 #PHP
提高PHP编程效率的53个要点(经验小结)
Sep 04 #PHP
队列在编程中的实际应用(php)
Sep 04 #PHP
You might like
献给php初学者(入门学习经验谈)
2010/10/12 PHP
配置eAccelerator和XCache扩展来加速PHP程序的执行
2015/12/22 PHP
Web版彷 Visual Studio 2003 颜色选择器
2007/01/09 Javascript
google 搜索框添加关键字实现代码
2010/04/24 Javascript
别了 JavaScript中的isXX系列
2012/08/01 Javascript
jQuery动画与特效详解
2015/02/01 Javascript
使用Node.js为其他程序编写扩展的基本方法
2015/06/23 Javascript
Angular2 Service实现简单音乐播放器服务
2017/02/24 Javascript
jQuery实现动态显示select下拉列表数据的方法
2018/02/05 jQuery
教你如何编写Vue.js的单元测试的方法
2018/10/17 Javascript
详解IOS微信上Vue单页面应用JSSDK签名失败解决方案
2018/11/14 Javascript
vue实现权限控制路由(vue-router 动态添加路由)
2019/11/04 Javascript
[41:56]Spirit vs Liquid Supermajor小组赛A组 BO3 第一场 6.2
2018/06/03 DOTA
Python+tkinter模拟“记住我”自动登录实例代码
2018/01/16 Python
解决pandas read_csv 读取中文列标题文件报错的问题
2018/06/15 Python
Python使用Selenium模块实现模拟浏览器抓取淘宝商品美食信息功能示例
2018/07/18 Python
Python开发最牛逼的IDE——pycharm
2018/08/01 Python
Python连接Mssql基础教程之Python库pymssql
2018/09/16 Python
使用python实现抓取腾讯视频所有电影的爬虫
2019/04/15 Python
Python2比较当前图片跟图库哪个图片相似的方法示例
2019/09/28 Python
python GUI库图形界面开发之PyQt5布局控件QVBoxLayout详细使用方法与实例
2020/03/06 Python
python如何写个俄罗斯方块
2020/11/06 Python
使用CSS3的::selection改变选中文本颜色的方法
2015/09/29 HTML / CSS
HTML5的自定义属性data-*详细介绍和JS操作实例
2014/04/10 HTML / CSS
办加油卡单位介绍信
2014/01/09 职场文书
职业生涯规划书结束语
2014/04/15 职场文书
个人批评与自我批评总结
2014/10/17 职场文书
长江三峡导游词
2015/01/31 职场文书
员工辞职信范文
2015/03/02 职场文书
技术员岗位职责范本
2015/04/11 职场文书
逃课检讨书范文
2015/05/06 职场文书
2015年语文教师工作总结
2015/05/25 职场文书
大学新生入学感想
2015/08/07 职场文书
2015年国庆节寄语
2015/08/17 职场文书
《角的度量》教学反思
2016/02/18 职场文书
python实现简单的井字棋
2021/05/26 Python