PHP 常用header头定义

在php的开发中,我们常常需要使用到header函数头来进行做标记

header() 函数向客户端发送原始的 HTTP 报头。

常用header设置列表如下:

header(‘HTTP/1.1 200 OK‘);  // ok 正常访问
header(‘HTTP/1.1 404 Not Found‘); //通知浏览器 页面不存在
header(‘HTTP/1.1 301 Moved Permanently‘); //设置地址被永久的重定向 301
header(‘Location: http://www.ithhc.cn/‘); //跳转到一个新的地址
header(‘Refresh: 10; url=http://www.ithhc.cn/‘); //延迟转向 也就是隔几秒跳转
header(‘X-Powered-By: PHP/6.0.0‘); //修改 X-Powered-By信息
header(‘Content-language: en‘); //文档语言
header(‘Content-Length: 1234‘); //设置内容长度
header(‘Last-Modified: ‘.gmdate(‘D, d M Y H:i:s‘, $time).‘ GMT‘); //告诉浏览器最后一次修改时间
header(‘HTTP/1.1 304 Not Modified‘); //告诉浏览器文档内容没有发生改变

###内容类型###
header(‘Content-Type: text/html; charset=utf-8‘); //网页编码
header(‘Content-Type: text/plain‘); //纯文本格式
header(‘Content-Type: image/jpeg‘); //JPG、JPEG
header(‘Content-Type: application/zip‘); // ZIP文件
header(‘Content-Type: application/pdf‘); // PDF文件
header(‘Content-Type: audio/mpeg‘); // 音频文件
header(‘Content-type: text/css‘); //css文件
header(‘Content-type: text/javascript‘); //js文件
header(‘Content-type: application/json‘);  //json
header(‘Content-type: application/pdf‘); //pdf
header(‘Content-type: text/xml‘);  //xml格式文件
header(‘Content-Type: application/x-shockw**e-flash‘); //Flash动画

######

###声明一个下载的文件###
header(‘Content-Type: application/octet-stream‘);
header(‘Content-Disposition: attachment; filename="ITblog.zip"‘);
header(‘Content-Transfer-Encoding: binary‘);
readfile(‘test.zip‘);
######

###对当前文档禁用缓存###
header(‘Cache-Control: no-cache, no-store, max-age=0, must-revalidate‘);
header(‘Expires: Mon, 26 Jul 1997 05:00:00 GMT‘);
######

###显示一个需要验证的登陆对话框###
header(‘HTTP/1.1 401 Unauthorized‘);
header(‘WWW-Authenticate: Basic realm="Top Secret"‘);
######

###声明一个需要下载的xls文件###
header(‘Content-Disposition: attachment; filename=ithhc.xlsx‘);
header(‘Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet‘);
header(‘Content-Length: ‘.filesize(‘./test.xls‘));
header(‘Content-Transfer-Encoding: binary‘);
header(‘Cache-Control: must-revalidate‘);
header(‘Pragma: public‘);
readfile(‘./test.xls‘);
######
时间: 2024-10-07 18:40:52

PHP 常用header头定义的相关文章

网页常用header头部定义

以PHP 为例: <?php header('HTTP/1.1 200 OK'); // ok 正常访问 header('HTTP/1.1 404 Not Found'); //通知浏览器 页面不存在 header('HTTP/1.1 301 Moved Permanently'); //设置地址被永久的重定向 301 header('Location: http://www.ithhc.cn/'); //跳转到一个新的地址 header('Refresh: 10; url=http://www

PHP 常用header头部定义汇总

1 <?php 2 header('HTTP/1.1 200 OK'); // ok 正常访问 3 header('HTTP/1.1 404 Not Found'); //通知浏览器 页面不存在 4 header('HTTP/1.1 301 Moved Permanently'); //设置地址被永久的重定向 301 5 header('Location: http://www.ithhc.cn/'); //跳转到一个新的地址 6 header('Refresh: 10; url=http://

php常用的header头

<?php /** * php常用的header头设置... */ header('HTTP/1.1 200 OK'); // ok 正常访问 header('HTTP/1.1 404 Not Found'); //通知浏览器 页面不存在 header('HTTP/1.1 301 Moved Permanently'); //设置地址被永久的重定向 301 header('Location: http://www.ithhc.cn/'); //跳转到一个新的地址 header('Refresh:

nginx反向代理proxy_set_header自定义header头无效的问题

###案例1环境nginx,linux,tomcat域名访问是走nginx给后端服务器处理的,问题是域名经过nginx访问直接不能获取到headers,直接tomcat访问可以那么问题肯定在nginx上无法处理headers的问题了, 经过查询上面资料得到是nginx的锅,hearders有下划线的锅,nginx设置underscores_in_headers on,参照上面配置说.就可以处理,测试:http://apistore.baidu.com/astore/toolshttpproxyA

iOS中常用的宏定义

1.处理NSLog事件(开发者模式打印,发布者模式不打印) 1 2 3 4 5   #ifdef DEBUG   #define NSLog(FORMAT, ...) fprintf(stderr,"%s:%d\t%s\n",[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS

curl用法:获取网站的header头及状态码

curl命令最常用的方法是使用参数-I 获取域名或IP的header信息,包括HTTP返回状态码,server类型,文本类型,缓存时间等等:监控web服务时也常用此方法判断web服务是否正常: 监控web服务,可以使用curl获取网站的header头,查看返回值是否是200 OK,作为判断web服务正常的一个标准: 使用curl -I 可以获取,如果提取第一行信息时,会出现一些不需要的信息,那我们该怎么取呢? [[email protected] ~]$ curl -I mofansheng.b

IOS开发中常用的宏定义

有些时候,我们需要将代码简洁化,这样便于读代码.我们可以将一些不变的东东抽取出来,将变化的东西作为参数.定义为宏,这样在写的时候就简单多了. 下面例举了一些常用的宏定义和大家分享: 1. 判断设备的操作系统是不是ios7 #define IOS7 ( [[[UIDevice currentDevice].systemVersion doubleValue] >= 7.0] ) 2. 判断当前设备是不是iPhone5 #define kScreenIphone5 (([[UIScreen main

IP头,TCP头,UDP头,MAC帧头定义

一.MAC帧头定义 /*数据帧定义,头14个字节,尾4个字节*/ typedef struct _MAC_FRAME_HEADER { char m_cDstMacAddress[6];    //目的mac地址 char m_cSrcMacAddress[6];    //源mac地址 short m_cType;        //上一层协议类型,如0x0800代表上一层是IP协议,0x0806为arp }__attribute__((packed))MAC_FRAME_HEADER,*PM

iOS敏捷开发之道,常用的宏定义总结

iOS开发中,直接在pch文件中导入宏定义.在做项目的时候,直接拿过来使用,可以大幅度提高开发速度. 下面是 个人总结的一些宏定义.如果大家有其他的常用的宏定义,欢迎添加.我会定期更新这个blog-.. 话不多说,直接上干货 // 在宏的参数前加上一个#,宏的参数会自动转换成c语言的字符串 #define MRKeyPath(objc,keyPath) @(((void)objc.keyPath, #keyPath)) //** 加载xib ***************************