Home  >  Article  >  Backend Development  >  Analysis of the role of header function in php

Analysis of the role of header function in php

黄舟
黄舟Original
2017-11-10 16:16:251789browse

In our previous article, we introduced you to the header header definition. So many people will ask if they have introduced it to customers before when they see the title. Does the client send raw HTTP headers? is it really like this? Today we will show you what the header function in php does.

Let’s take a look at the definition in the official document first

(PHP 4, PHP 5, PHP 7)

header — Send native HTTP header

1 void header ( string $string [, bool $replace = true [, int $http_response_code ]] )

Parameters:

 string

There are two special heads. The first one starting with "HTTP/" (case is not significant) will be used to calculate the HTTP status code to be sent. For example, if you use a PHP script on the Apache server to handle requests for non-existent files (using the ErrorDocument directive), you will hope that the script responds with the correct status code.

1 <?php
2 header("HTTP/1.0 404 Not Found");
3 ?>

The second special case is the "Location:" header information. It not only sends the message to the browser, but also returns a REDIRECT (302) status code to the browser, unless the status code has been set to 201 or ## in advance. #3xx.

1 <?php
2 header("Location: http://www.example.com/"); /* Redirect browser */
3 
4 /* Make sure that code below does not get executed when we redirect. */
5 exit;
6 ?>

  •  replace<span style="font-family: Microsoft YaHei"></span>

  • Optional parameters replace Indicates whether to replace the previous header of the same type with the following header. Replaced by default. If you pass FALSE, you can force the same header information to coexist. For example:

  • 1 <?php
    2 header(&#39;WWW-Authenticate: Negotiate&#39;);
    3 header(&#39;WWW-Authenticate: NTLM&#39;, false);
    4 ?>

http_response_code

## Forces the value of the HTTP response. Note that this parameter is only valid when the message

string (string) is not empty.

The common uses of the header function are as follows:

 1. Redirect


header(&#39;Location: http://www.example.com/&#39;);

2. Specified content:

header(&#39;Content-type: application/pdf&#39;);

3. Attachment:

header(&#39;Content-type: application/pdf&#39;);
    //指定内容为附件,指定下载显示的名字
    header('Content-Disposition: attachment; filename="downloaded.pdf"');
    //打开文件,并输出
    readfile('original.pdf')

The above code can produce the effect of a file dialog box in the browser

4. Allow users to obtain the latest information and data instead of caching

header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
    header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");   // 设置临界时间

Detailed examples

##Summary: After reading this article, I believe you all know the functions of the header function in php. I hope it will be helpful to your work!

Related recommendations:

Detailed explanation of header definition in php

Explanation on how to use the PHP header function


Analysis and solutions to the causes of PHP Header failure


PHP header jump detailed analysis

The above is the detailed content of Analysis of the role of header function in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn