网站地图    收藏   

主页 > php专栏 > php函数大全 >

php header()函数详细实用方法 - php函数

来源:自学PHP网    时间:2014-11-25 00:26 作者: 阅读:

[导读] header(string,replace,http_response_code)string 必需,规定要发送的报头字符串 replace 可选,指示该报头是否替换之前的报头,或添加第二...

php header()函数详细实用方法

header(string,replace,http_response_code)

string 必需,规定要发送的报头字符串.

replace 可选,指示该报头是否替换之前的报头,或添加第二个报头.

默认是 true(替换),false(允许相同类型的多个报头).

http_response_code 可选,把 http 响应代码强制为指定的值,(php 4 以及更高版本可用)

跳转:

header('location: http://www.phpfensi.com/');发送http状态

header("status: 404 not found");

设置缓存:

header("cache-control: no-cache, must-revalidate"); // http/1.1

header("expires:sat,26 jul 1997 05:00:00 gmt");

利用header做文件下载功能:

  1. header("content-type:application/pdf");// 文件将被称为 downloaded.pdf 
  2. header("content-disposition:attachment;filename='downloaded.pdf'");// pdf 源在 original.pdf 中 
  3. readfile("original.pdf"); 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论