<div class="jb51code">
<pre class="brush:PHP;">
void header ( string $string [,bool $replace = true [,int $http_response_code ]] ) : Send a raw HTTP header
<div class="jb51code">
<pre class="brush:PHP;">
void header ( string $string [,bool $replace = true [,int $http_response_code ]] ) : Send a raw HTTP header
header('Location:'.$url);
其中$url就是将要跳转的url了。
•Location和":"之间不能有空格,否则会出现错误(注释:我刚测试了,在我本地环境下,没有@R_178_404@面,但是也没有报错,不清楚什么原因);
•在用header前不能有任何的输出(注释:这点大家都知道的,如果header之前有任何的输出,包括空白,就会出现header already sent by xxx的错误);
•header 后面的东西还会执行的;
header('content-type:text/html;charset=utf-8'); 这个没有什么好说的;
header(sprintf('%s %d %s',$http_version,$status_code,$description));
样式就是这样的;
例如:header('HTTP/1.1 404 Not Found');
header("Refresh: {$delay}; url={$url}");
其中$delay就是推迟跳转的时间,$url为需要跳转的url
例如:header('Refresh: 10; url=http://www.example.org/'); 意思为10s后跳转到http://www.eexample.org这个网站
header('HTTP/1.1 401 Unauthorized'); header('WWW-Authenticate: Basic realm="Top Secret"');
header('Location:'.$url); //Location和":"之间无空格。
header('content-type:text/html;charset=utf-8');
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");
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')); //设置内容长度
原文链接:https://www.f2er.com/php/19550.html