php header函数怎么设置HTTP头
程序员文章站
2022-04-04 17:43:32
...
php header函数设置HTTP头的方法:【header( 'Content-Type:text/html;charset=utf-8 ');】,表示设置编码为utf-8。
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如何删除json数据
下一篇: iis下php如何开启错误提示
推荐阅读
-
PHP 使用header函数设置HTTP头的示例解析 表头
-
PHP下利用header()函数设置浏览器缓存的代码
-
PHP header()函数使用详细(301、404等错误设置)
-
header函数设置响应头解决php跨域问题实例详解
-
php的curl携带header请求头信息实现http访问的方法
-
php header函数的常用http头设置
-
php设置http请求头信息和响应头信息
-
PHP header()函数使用详细(301、404等错误设置)_PHP
-
PHP header()函数使用详细(301、404等错误设置)_PHP
-
excel 2007官方下载 免费完整版 PHP 设置 HTTP 头信息导出 Excel 报表