PHP之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⽤法:
// Header永久性重定向,⼀般301与header Location⼀起使⽤.
header(‘HTTP/1.1 301 Moved Permanently');
header(‘Location: www.phpthinking/');
// Header延时刷新页⾯
//与HTML页⾯中的<meta http-equiv=”refresh” content=”10;www.phpthinking” />效果⼀样
header(‘Refresh: 10; url=www.phpthinking/');
// 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设置页⾯编码:
php延时函数header(‘Content-Type: text/html; charset=utf-8′);
到此这篇关于PHP之header函数详解的⽂章就介绍到这了,更多相关PHP之header函数内容请搜索以前的⽂章或继续浏览下⾯的相关⽂章希望⼤家以后多多⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论