Example of PHP header function usage

Source: Internet
Author: User
Tags setcookie
    1. Header ("location:http://bbs.it-home.org";);
    2. Exit After each redirect, "Exit" must be added to avoid an error and continue execution.
    3. ?>
    4. Header ("refresh:3;url=http://bbs.it-home.org");
    5. Print (' Loading, please wait ...
      Three seconds after the automatic jump ~ ~ ~ ');
    6. Header redirection is equivalent to entering a URL for the user in the Address bar
    7. ?>
Copy Code

Example 2, prevent pages from being cached in IE

    1. Header (' Expires:mon, Jul 1997 05:00:00 GMT ');
    2. Header (' last-modified: '. Gmdate (' d, D M Y h:i:s '). ' GMT ');
    3. Header (' Cache-control:no-store, No-cache, Must-ridate ');
    4. Header (' cache-control:post-check=0, pre-check=0 ', false);
    5. Header (' Pragma:no-cache ');//compatible with http1.0 and HTTPS
    6. ?>
    7. CacheControl = No-cache
    8. Pragma=no-cache
    9. Expires =-1
Copy Code

Note: If the Web page on the server changes frequently, set the expires to 1, which means that it expires immediately. If a webpage is updated daily 1 o'clock in the morning, you can set expires to 1 o'clock in the morning the next day. When the HTTP1.1 server specifies CacheControl = No-cache, the browser does not cache the page. Legacy HTTP 1.0 Servers cannot use the Cache-control header. So for backwards compatibility with HTTP 1.0 servers, IE uses the Pragma:no-cache header to provide special support for HTTP. Internet Explorer does not cache this response if the client communicates with the server over a secure connection (https://) and the server returns a Pragma:no-cache header in the response.

Note: Pragma:no-cache prevents caching only when used in a secure connection, and if used in a non-secure page, is processed in the same way as expires:-1, the page is cached but is marked for immediate expiration.

HTTP-EQUIV META tag: You can use HTTP-EQUIV meta to mark the header of a specified HTTP message in an HTML page. Older versions of IE may not support HTML meta tags, so it is best to use the HTTP message header to disable caching.

Example 3, let the user's browser appear unable to find the file information.

Online data show: Php function header () can send a status header to the browser, for example:

    1. Header ("status:404 not Found")
Copy Code

。 In fact, the response returned by the browser is:

    1. Header ("http/1.1 404 Not Found");
Copy Code

The first part is the version of the HTTP Protocol (http-version), the second part is the status code, and the third part is the reason phrase (reason-phrase).

Example 4, let the user download the file (the location of hidden files) HTML tags can be used to achieve normal file download. If in order to keep confidential files, you can not send the file link to others, you may use the header function for file download.

    1. Header ("Content-type:application/x-gzip");
    2. Header ("content-disposition:attachment; Filename= file name ");
    3. Header ("Content-description:php3 Generated Data");
    4. ?>
Copy Code

Example 5, the header function before the input content in general before the header function can not output HTML content, similar to the Setcookie () and the session function, these functions need to increase the message header information in the output stream.

If there is an echo statement before the header () is executed, the "Warning:cannot Modify header Information–headers already sent by ..." error is reported when the header () is encountered later. There can be no text, blank lines, carriage returns, etc. in front of these functions, and it is best to add the exit () function after the header () function.

For example, in the following error notation, there is a blank line between the two PHP code snippets:

    1. Some code here
    2. ?>
    3. This is supposed to be a blank line.
    4. Header ("http/1.1 403 Forbidden");
    5. Exit ();
    6. ?>
Copy Code

Cause analysis: When the PHP script starts executing, it can send both the HTTP message header (header) information and the principal information. The HTTP message header (from the header () or the Setcookie () function) is not immediately sent, instead it is saved to a list.

This allows you to modify the header information, including the default title (such as the Content-type title).

However, once the script sends any non-header output (for example, using HTML or print () calls), then PHP must first send all the headers and then terminate the HTTP header. Then continue to send the principal data, from this point on, any attempt to add or modify header information is not allowed, and will send one of the above error messages.

Workaround: Modify php.ini to open the cache (output_buffering), or use the cache function Ob_start (), Ob_end_flush (), etc. in the program.

Principle Analysis: When output_buffering is enabled, PHP does not send HTTP headers when the script sends output.

Instead, it imports this output through a pipeline (pipe) into a dynamically increasing cache (only used in PHP 4.0, which has a centralized output mechanism).

You can either modify/Add the header or set the cookie because the header is not actually sent. When all the scripts are terminated, PHP automatically sends the HTTP header to the browser, and then sends the contents of the output buffer.

Attached, some other examples of PHP header functions.

  1. Ok
  2. Header (' http/1.1 OK ');
  3. Set a 404 Header:
  4. Header (' http/1.1 404 Not Found ');
  5. Set address to be permanently redirected
  6. Header (' http/1.1 301 Moved permanently ');
  7. Go to a new address
  8. Header (' location:http://bbs.it-home.org/');
  9. File Delay Steering:
  10. Header (' refresh:10; url=http://bbs.it-home.org/');
  11. print ' You'll be redirected in ten seconds ';
  12. Of course, you can also use HTML syntax to implement
  13. //
  14. Override x-powered-by:php:
  15. Header (' x-powered-by:php/4.4.0′ ');
  16. Header (' x-powered-by:brain/0.6b ');
  17. Document language
  18. Header (' content-language:en ');
  19. Tell the browser when it was last modified
  20. $time = time () –60; or Filemtime ($FN), etc
  21. Header (' last-modified: '. Gmdate (' d, D M Y h:i:s ', $time). ' GMT ');
  22. Tell the browser that the contents of the document have not changed
  23. Header (' http/1.1 304 not Modified ');
  24. Set Content length
  25. Header (' content-length:1234′ ');
  26. Set as a download type
  27. Header (' Content-type:application/octet-stream ');
  28. Header (' content-disposition:attachment; filename= ' Example.zip ');
  29. Header (' content-transfer-encoding:binary ');
  30. Load the file to send:
  31. ReadFile (' Example.zip ');
  32. Disable caching for the current document
  33. Header (' Cache-control:no-cache, No-store, max-age=0, Must-ridate ');
  34. Header (' Expires:mon, Jul 1997 05:00:00 GMT '); Date in the past
  35. Header (' Pragma:no-cache ');
  36. To set the content type:
  37. Header (' content-type:text/html; charset=iso-8859-1′);
  38. Header (' content-type:text/html; charset=utf-8′);
  39. Header (' Content-type:text/plain '); Plain Text Format
  40. Header (' Content-type:image/jpeg '); JPG pictures
  41. Header (' Content-type:application/zip '); ZIP file
  42. Header (' content-type:application/pdf '); PDF file
  43. Header (' Content-type:audio/mpeg '); Audio files
  44. Header (' Content-type:application/x-shockwave-flash '); Flash Animation
  45. Show Login dialog box
  46. Header (' http/1.1 401 Unauthorized ');
  47. Header (' Www-authenticate:basic realm= ' Top Secret ');
  48. print ' Text that would be displayed if the user hits cancel or ';
  49. print ' enters wrong login data ';
  50. ?>
Copy Code
  • 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.