PHP headers used in the HTTP protocol and common methods Summary, header summary
This paper summarizes the HTTP protocol used by headers in PHP and the common methods. Share to everyone for your reference. Here's how:
Copy CodeThe code is as follows: <? Php
function HTTPS ($num) {
$http = Array (
"http/1.1 Continue",
101 = "http/1.1 101 switching Protocols",
$ = "http/1.1-OK",
201 = "http/1.1 201 Created",
202 = "http/1.1 202 Accepted",
203 = "http/1.1 203 non-authoritative Information",
204 = "http/1.1 204 No Content",
205 = "http/1.1 205 Reset Content",
206 = "http/1.1 206 Partial Content",
"http/1.1 multiple Choices",
301 = "http/1.1 301 Moved Permanently",
302 = "http/1.1 302 Found",
303 = "http/1.1 303 See other",
304 = "http/1.1 304 not Modified",
305 = "http/1.1 305 use Proxy",
307 = "http/1.1 307 temporary Redirect",
"http/1.1-Bad Request",
401 = "http/1.1 401 Unauthorized",
402 = "http/1.1 402 Payment Required",
403 = "http/1.1 403 Forbidden",
404 = "http/1.1 404 Not Found",
405 = "http/1.1 405 Method not allowed",
406 = "http/1.1 406 not acceptable",
407 = "http/1.1 407 Proxy authentication Required",
408 = "http/1.1 408 Request time-out",
409 = "http/1.1 409 Conflict",
410 = "http/1.1 410 Gone",
411 = "http/1.1 411 Length Required",
412 = "http/1.1 412 precondition Failed",
413 = "http/1.1 413 Request Entity Too Large",
414 = "http/1.1 414 request-uri Too Large",
415 = "http/1.1 415 unsupported Media Type",
416 = "http/1.1 416 requested range not satisfiable",
417 = "http/1.1 417 expectation Failed",
"http/1.1 Internal Server Error",
501 = "http/1.1 501 Not implemented",
502 = "http/1.1 502 Bad Gateway",
503 = "http/1.1 503 Service Unavailable",
504 = "http/1.1 504 Gateway Time-out"
);
Header ($http [$num]);
};
200 normal state
Header (' http/1.1 OK ');
301 permanent Redirect, remember to add a redirect address at the back location: $url
Header (' http/1.1 301 Moved permanently ');
Redirect, in fact, is 302 temporary redirect
Header (' location:http://www.xxxx.com/');
Settings page 304 Not modified
Header (' http/1.1 304 not Modified ');
Display the Login box,
Header (' http/1.1 401 Unauthorized ');
Header (' Www-authenticate:basic realm= ' login information ');
Echo ' Displays the information! ';
403 No Access
Header (' http/1.1 403 Forbidden ');
404 error
Header (' http/1.1 404 Not Found ');
500 Server Error
Header (' http/1.1 Internal Server Error ');
REDIRECT the specified address after 3 seconds (that is, refresh to a new page and
Header (' content-transfer-encoding:binary ');
ReadFile (' example.zip ');//Read file to Client
Disable Page Caching
Header (' Cache-control:no-cache, No-store, max-age=0, Must-revalidate ');
Header (' Expires:mon, Jul 1997 05:00:00 GMT ');
Header (' Pragma:no-cache ');
Set Page header information
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 ');
Header (' Content-type:application/zip ');
Header (' content-type:application/pdf ');
Header (' Content-type:audio/mpeg ');
Header (' Content-type:application/x-shockwave-flash ');
//.... As for the value of Content-type, you can check the document library, which is very rich
?>
I hope this article is helpful to everyone's PHP programming.
HTTP header protocol header function in PHP
This, I have not specifically studied,
Go to see the baigoogledu a lot of source code bar, inside very detailed.
What else does that mean? Aggregation search basically steals some links.
How to use the Get method to pass a variable when PHP uses the header to jump
variables to use. Connection
Header ("location:xx.php?id=". $id);
http://www.bkjia.com/PHPjc/906112.html www.bkjia.com true http://www.bkjia.com/PHPjc/906112.html techarticle PHP Header using the HTTP protocol and common methods Summary, header Summary This article summarizes the HTTP protocol used in PHP header and common methods. Share to everyone for your reference. Specific Methods ...