在php中header函数是一个很常用的函数了,它可以跳转也可以发送各种状态代码,如404,301或者页面编码,下面我来总结一下header函数常用方法,代码如下:
- <?php
-
- header('HTTP/1.1 200 OK');
-
-
- header('HTTP/1.1 404 Not Found');
-
-
-
- header('HTTP/1.1 301 Moved Permanently');
-
-
- header('Location: http://www.phpfensi.com/');
-
-
- header('Refresh: 10; url=http://www.phpfensi.com/');
-
-
-
-
-
- header('X-Powered-By: PHP/4.4.0');
- header('X-Powered-By: Brain/0.6b');
-
-
- header('Content-language: en');
-
-
- $time = time('') – 60;
- 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');
-
-
-
- header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
- header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
-
-
-
-
-
- header('Content-Type: image/jpeg');
-
-
- header('Content-Type: application/zip');
-
-
- header('Content-Type: application/pdf');
-
-
- header('Content-Type: audio/mpeg');
-
-
- header('Content-Type: application/x-shockwave-flash');
-
-
- header('HTTP/1.1 401 Unauthorized');
- header('WWW-Authenticate: Basic realm="Top Secret"');
-
-
-
-
-
-
- header('Content-Type: text/html; charset=iso-8859-1');
- header('Content-Type: text/html; charset=utf-8');
- header('Content-Type: text/plain');
-
- php页面为utf编码
- header("Content-type: text/html; charset=utf-8");
-
- php页面为gbk编码
- header("Content-type: text/html; charset=gb2312");
-
- php页面为big5编码
- header("Content-type: text/html; charset=big5");
-
-
-
- Header( "HTTP/1.1 301 Moved Permanently" ) ;
- Header( "Location: www.phpfensi.com" );
- ?>
|