PHP之header函数详解
发布:smiling 来源: PHP粉丝网 添加日期:2022-04-15 10:48:22 浏览: 评论:0
这篇文章主要介绍了PHP之header函数详解,小编觉得这个header函数的技术点还是比较重要的,感兴趣的同学可以研究下
PHP的header函数是最常用的函数之一,用于向客户端发送HTTP头信息。
通过的用法如设置编码、发送HTTP状态值以及重定向。
- php header utf8 :
- header(“Content-type: text/html; charset=utf-8″);
- php header 404 :
- header(“HTTP/1.0 404 Not Found”);
上述两个例子分别是设置UTF8编码和发送404状态。
header重定向:
header(‘Location: http://www.phpfensi.com');
其他常用的Header用法:
// Header永久性重定向,一般301与header Location一起使用.
header(‘HTTP/1.1 301 Moved Permanently');
header(‘Location: http://www.phpthinking.com/');
// Header延时刷新页面
//与HTML页面中的<meta http-equiv=”refresh” content=”10;http://www.phpfensi.com” />效果一样
header(‘Refresh: 10; url=http://www.phpfensi.com/');
// Header设置页面语言
header(‘Content-language: en');
// 对于下载页面,可以声明文件类型和文件名
header(‘Content-Type: application/octet-stream');
header(‘Content-Disposition: attachment; filename=”filename.zip”‘);
header(‘Content-Transfer-Encoding: binary');
// Header设置缓存和缓存过期时间
header(‘Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
header(‘Expires: Mon, 26 Jul 1997 05:00:00 GMT');
// Header设置页面编码:
header(‘Content-Type: text/html; charset=utf-8′);
Tags: header
- 上一篇:php中array_fill函数的实例用法
- 下一篇:最后一页
相关文章
- ·php get_headers 与get_meta_tags函数实例(2014-01-15)
- ·php利用header保存excel文件(2014-01-15)
- ·php 中header函数的用法详解(2014-05-20)
- ·php header()函数详细实用方法(2014-05-30)
- ·php header函数中隐藏php信息详解(2014-06-08)
- ·php中header函数后是否应该有exit(2014-06-11)
- ·php的URL重定向header()函数(2014-06-16)
- ·PHP Header函数跳转时需要注意的一些问题(2014-09-12)
- ·PHP header() 函数使用方法总结(2014-09-13)
- ·PHP header函数一此常用的用法详解(2014-09-13)
- ·PHP get_headers函数判断远程文件是否存在(2014-09-14)
- ·php header函数的详解(2014-09-14)
- ·php header函数实现代码(2014-09-19)
- ·php header()函数实现文件下载的例子(2014-09-22)
- ·PHP使用get_headers函数判断远程文件是否存在的方法(2021-05-01)
- ·PHP实现的带超时功能get_headers函数(2021-05-11)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)