Php:header () Function Usage Example

Source: Internet
Author: User
PHP only in the HTTP protocol to the HTML document header sent to the browser, tell the browser how to do this page, as for the content of the transfer will need to familiarize yourself with the HTTP protocol, not related to PHP,

Refer to the header () function usage instructions:

:
~~~~~~~~~
PHP simply sends the HTML document's header to the browser in the HTTP protocol, telling the browser exactly what to do with the page, and the HTTP protocol for the content being transmitted. It has nothing to do with PHP. The
traditional header must contain one of the following three headers and can only occur once.
location:xxxx:yyyy/zzzz
content-type:xxxx/yyyy
status:nnn xxxxxx

Second, first to understand how the HTTP protocol works
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
HTTP protocol is based on the request/response paradigm. After a client establishes a connection to the server, it sends a request to the server in the form of a Uniform Resource Identifier, protocol version number, followed by MIME information including the request modifier, client information, and possible content. After the server receives the request, it gives the corresponding response information in the form of a status line that includes the protocol version number of the information, a successful or incorrect code, followed by MIME information including server information, entity information, and possible content.
It is divided into four processes, in the HTTP protocol, the server is the part that provides the HTTP service, the client refers to the browser you use or download tools and so on. In the communication, the client makes a request connection, the server establishes the connection, and then the client makes an HTTP request (request) and the server returns the response information (Respond), thus completing an HTTP operation.

Third, the meaning of the HTTP protocol status code
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1xx reserved
2xx indicates that the request successfully received
3xx for Completion request customer needs further refinement of request
4xx customer error
5xx server error

IV, operating example:
~~~~~~~~~~~~~
<1> redirection function, this Most common

<?php Header ("location:http://www.php.cn");?>

<2> forces users to get the latest information each time they access the page, rather than using a cache that exists on the client.

<?php//Tell the browser to expire on this page (in Greenwich Mean Time), as long as the date has passed. Header ("Expires:mon, Jul 1970 05:00:00 GMT"); Tell the browser that the last update date (in Greenwich Mean Time) of this page is the same day, the purpose is to force the browser to get the latest data header ("Last-modified:". Gmdate ("D, D M Y h:i:s"). "GMT"); Tell the client browser not to use the cache header ("Cache-control:no-cache, must-revalidate"); Parameters (compatible with previous servers), which is compatible with the HTTP1.0 protocol header ("Pragma:no-cache"); Output MIME Type header ("Content-type:application/file"); File Length Header ("content-length:227685"); The Accepted Range unit header ("Accept-ranges:bytes"); By default, the file name in the File Save dialog box header ("Content-disposition:attachment; Filename= $filename ");?>

<3> output status value to the browser, mainly for access rights control

<?php header (' http/1.1 401 Unauthorized '); Header (' status:401 unauthorized ');?>

For example, to restrict a user from accessing the page, you can set the status to 404, as shown below, so that the browser is displayed as if the page does not exist

<?php header (' http/1.1 404 Not Found '); Header ("status:404 not Found");?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.