PHP之header函数详解
程序员文章站
2022-05-10 23:22:35
php的header函数是最常用的函数之一,用于向客户端发送http头信息。通过的用法如设置编码、发送http状态值以及重定向。php header utf8 :header(“content-typ...
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.phpthinking.com');
其他常用的header用法:
// header永久性重定向,一般301与header location一起使用.
// header延时刷新页面
// header设置页面语言
// 对于下载页面,可以声明文件类型和文件名
// header设置缓存和缓存过期时间
// header设置页面编码:
到此这篇关于php之header函数详解的文章就介绍到这了,更多相关php之header函数内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!