php header函数怎么设置HTTP头

王林
发布: 2023-03-07 08:46:02
原创
1961 人浏览过

php header函数设置HTTP头的方法:【header( 'Content-Type:text/html;charset=utf-8 ');】,表示设置编码为utf-8。

php header函数怎么设置HTTP头

PHP header函数设置HTTP头的示例如下:

(视频教程推荐:java视频教程

定义编码

header( 'Content-Type:text/html;charset=utf-8 ');
登录后复制

设置一个404头:

header('HTTP/1.1 404 Not Found');
登录后复制

设置地址被永久的重定向

header('HTTP/1.1 301 Moved Permanently');
登录后复制

转到一个新地址

header('Location: http://www.example.org/');
登录后复制

文件延迟转向:

header('Refresh: 10; url=http://www.example.org/'); print 'You will be redirected in 10 seconds';
登录后复制

告诉浏览器最后一次修改时间

$time = time() - 60; // or filemtime($fn), etc header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT');
登录后复制

对当前文档禁用缓存

header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate'); header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past header('Pragma: no-cache');
登录后复制

相关推荐:php培训

以上是php header函数怎么设置HTTP头的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!