// ok
header('HTTP/1.1 200 OK');

//设置一个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';

//当然,也可以使用html语法实现
// <meta http-equiv="refresh" content="10;http://www.example.org/ />

// override X-Powered-By: PHP:
header('X-Powered-By: PHP/4.4.0');
header('X-Powered-By: Brain/0.6b');

//文档语言
header('Content-language: en');

//告诉浏览器最后一次修改时间
$time = time() - 60; // or filemtime($fn), etc
header('Last-Modified: '.gmdate('D, d M Y H:i:s', $time).' GMT');

//告诉浏览器文档内容没有发生改变
header('HTTP/1.1 304 Not Modified');

//设置内容长度
header('Content-Length: 1234');

//设置为一个下载类型
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="example.zip"');
header('Content-Transfer-Encoding: binary');
// load the file to send:
readfile('example.zip');

// 对当前文档禁用缓存
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');

//设置内容类型:
header('Content-Type: text/html; charset=iso-8859-1');
header('Content-Type: text/html; charset=utf-8');
header('Content-Type: text/plain'); //纯文本格式
header('Content-Type: image/jpeg'); //JPG图片
header('Content-Type: application/zip'); // ZIP文件
header('Content-Type: application/pdf'); // PDF文件
header('Content-Type: audio/mpeg'); // 音频文件
header('Content-Type: application/x-shockwave-flash'); //Flash动画

//显示登陆对话框
header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm="Top Secret"');
print 'Text that will be displayed if the user hits cancel or ';
print 'enters wrong login data';

最新文章

  1. 2016BUAA校赛决赛
  2. iOS开发之ImageView复用实现图片无限轮播
  3. CodeIgniter框架下载辅助函数的一个小bug
  4. 他们在军训,我在搞 OI(四)
  5. BZOJ3933 [CQOI2015]多项式
  6. R编程感悟
  7. AI教程
  8. php解析url的三种方法举例
  9. Asp.net 将DataTable 或者DataSet 转换为Json 格式
  10. HashSet与HashMap
  11. C#中WindowsForm常见控件的运用
  12. django form表单验证
  13. (转)JVM类生命周期概述:加载时机与加载过程
  14. The POM for * is invalid
  15. Spring学习笔记2——创建Product对象,并在其中注入一个Category对象
  16. SpringBoot 2.X集成Hive-jdbc 3.1.1
  17. Jenkins集群搭建
  18. python调试之pdb
  19. 安装cx_Oracle 6
  20. Codeforces 300C Beautiful Numbers 【组合数】+【逆元】

热门文章

  1. Android实战项目——家庭记账本(七)
  2. 指数ETF基金的组合分析方法初探
  3. MySQL优化、锁
  4. day 12 函数
  5. 使用高精度计算斐波那契数列 c++
  6. C#面向对象详解
  7. 通俗易懂的RESTful API实践详解(含代码)
  8. 通过sd文件发布的FeatureAccess服务不能查看到图层
  9. centos7&amp;python3.6uwsgi安装
  10. C#中System.ServiceProgress报错