设为首页 收藏本站
查看: 891|回复: 0

[经验分享] PHP header函数使用教程

[复制链接]

尚未签到

发表于 2015-8-24 16:34:57 | 显示全部楼层 |阅读模式
在php语言中,header()这个函数很有用的,尤其在用到ajax时。  下面是header的一些详细讲解。  


1 <?php  2 /**

3 * php header函数用法举例
4 * 整理:www.jbxue.com
5 */
6 // fix 404 pages:
7 header('HTTP/1.1 200 OK');
8 // set 404 header:
9 header('HTTP/1.1 404 Not Found');
10 // set Moved Permanently header (good for redrictions)
11 // use with location header
12 header('HTTP/1.1 301 Moved Permanently');
13 // redirect to a new location:
14 header('Location: http://www.jbxue.com/');
15 // redrict with delay:
16 header('Refresh: 10; url=http://www.jbxue.com/');
17 print 'You will be redirected in 10 seconds';
18 // you could also use the HTML syntax:// <meta http-equiv="refresh" content="10;http://www.jbxue.com/ />
19 // override X-Powered-By: PHP:
20 header('X-Powered-By: PHP/4.4.0');
21 header('X-Powered-By: Brain/0.6b');
22 // content language (en = English)
23 header('Content-language: en');
24 // last modified (good for caching)
25 $time = time() &#8211; 60; // or filemtime($fn), etc
26 header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT');
27 // header for telling the browser that the content
28 // did not get changed
29 header('HTTP/1.1 304 Not Modified');
30 // set content length (good for caching):
31 header('Content-Length: 1234');
32 // Headers for an download:
33 header('Content-Type: application/octet-stream');
34 header('Content-Disposition: attachment; filename="example.zip"');
35 header('Content-Transfer-Encoding: binary');
36 // load the file to send:readfile('example.zip');
37 // Disable caching of the current document:
38 header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
39 header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
40 // Date in the pastheader('Pragma: no-cache');
41 // set content type:
42 header('Content-Type: text/html; charset=iso-8859-1');
43 header('Content-Type: text/html; charset=utf-8');
44 header('Content-Type: text/plain');
45 // plain text file
46 header('Content-Type: image/jpeg');
47 // JPG picture
48 header('Content-Type: application/zip');
49 // ZIP file
50 header('Content-Type: application/pdf');
51 // PDF file
52 header('Content-Type: audio/mpeg');
53 // Audio MPEG (MP3,&#8230;) file
54 header('Content-Type: application/x-shockwave-flash');
55 // Flash animation// show sign in box
56 header('HTTP/1.1 401 Unauthorized');
57 header('WWW-Authenticate: Basic realm="Top Secret"');
58 print 'Text that will be displayed if the user hits cancel or ';
59 print 'enters wrong login data';
60 ?>

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-103673-1-1.html 上篇帖子: php section 下篇帖子: PHP API接口测试小工具
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表