1、使用header函数进行跳转页面;

  header('Location:'.$url);
  其中$url就是将要跳转的url了。

  这种用法的注意事项有以下几点:

•Location和":"之间不能有空格,否则会出现错误(注释:我刚测试了,在我本地环境下,没有跳转页面,但是也没有报错,不清楚什么原因); 
•在用header前不能有任何的输出(注释:这点大家都知道的,如果header之前有任何的输出,包括空白,就会出现header already sent by xxx的错误);

•header 后面的东西还会执行的;

2、使用header声明content-type

  header('content-type:text/html;charset=utf-8');
  这个没有什么好说的;

3、使用header返回response 状态码

  header(sprintf('%s %d %s', $http_version, $status_code, $description));

  样式就是这样的;

  例如:header('HTTP/1.1 404 Not Found');

4、使用header在某个时间后执行跳转
 header("Refresh: {$delay}; url={$url}");
 其中$delay就是推迟跳转的时间,$url为需要跳转的url

 例如:header('Refresh: 10; url=http://www.example.org/'); 意思为10s后跳转到http://www.eexample.org这个网站

5、使用header控制浏览器缓存

header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
  header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");
  header("Cache-Control: no-cache, must-revalidate");
  header("Pragma: no-cache");

6、执行http验证

  header('HTTP/1.1 401 Unauthorized');
  header('WWW-Authenticate: Basic realm="Top Secret"');

7、使用header进行下载操作

header('Content-Type: application/octet-stream');//设置内容类型
  header('Content-Disposition: attachment; filename="example.zip"'); //设置MIME用户作为附件下载 如果将attachment换成inline意思为在线打开
  header('Content-Transfer-Encoding: binary');//设置传输方式
  header('Content-Length: '.filesize('example.zip'));//设置内容长度
  // load the file to send:
  readfile('example.zip');//读取需要下载的文件

下面再给大家介�php header 的几种用法

跳转页面

header('Location:'.$url); //Location和":"之间无空格。

声明content-type

header('content-type:text/html;charset=utf-8');

返回response状态码

header('HTTP/1.1 404 Not Found');

在某个时间后执行跳转

header('Refresh: 10; url=http://www.baidu.com/'); //10s后跳转。

控制浏览器缓存

header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");

执行http验证

header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm="Top Secret"');

执行下载操作

header('Content-Type: application/octet-stream'); //设置内容类型
header('Content-Disposition: attachment; filename="example.zip"'); //设置MIME用户作为附件
header('Content-Transfer-Encoding: binary'); //设置传输方式
header('Content-Length: '.filesize('example.zip')); //设置内容长度

最新文章

  1. 【ZJOI2007】棋盘制作 BZOJ1057
  2. Entity Framework之问题收集
  3. PHP中正则替换函数preg_replace用法笔记
  4. mysql的登录密码带特殊符号登录不进去的问题
  5. Java 类和对象
  6. uva 11137 Ingenuous Cubrency(完全背包)
  7. [Leetcode] Binary tree Zigzag level order traversal二叉树Z形层次遍历
  8. Java Web高级编程(二)
  9. Linux录制、回放和共享终端操作
  10. 使用js从element的matrix推导transform的scale、rotate 和 translate参数
  11. 3d模型 手办制作 3d model manual production
  12. 1-find
  13. try catch之ajax调错
  14. BZOJ 3812 : 主旋律
  15. 五、spring boot 1.5.4 集成 jpa+hibernate+jdbcTemplate
  16. PHP 访问链接的3种方式
  17. [转载]A cycle was detected in the build path of project
  18. 【spring boot】使用定时任务@Scheduled 报错:Encountered invalid @Scheduled method 'dealShelf': Cron expression must consist of 6 fields (found 7 in "0 30 14 * * ? *")
  19. charles抓包工具的使用:概述
  20. IDEA的terminal设置成Linux的终端一样

热门文章

  1. Android --通知栏Notification
  2. 红帽Linux 配置VNC桌面远程工具
  3. oracle 时间格式修改
  4. linux:磁碟与档案系统管理
  5. CSS的叠加
  6. zoj The 12th Zhejiang Provincial Collegiate Programming Contest Team Formation
  7. [转] linux中常用的命令
  8. &nbsp|&quot|&amp|&lt|&gt等html字符转义
  9. SpringMvc的数据绑定流程
  10. SpringMvc项目分析