PHP browser cache operations

Source: Internet
Author: User

The header () function in PHP sends a specific cache to control the original HTTP header. The header () must be called before any actual output, whether it is from a common HTML Tag, empty line, or PHP. In a Chinese environment, a full-width space will also lead to hard-to-find errors.

The Code is as follows: Copy code
<? Php

// The following statement sets the expiration time of this page (expressed by Greenwich Mean Time), as long as it is a date that has passed.
Header ("Expires: Mon, 26 Jul 1970 05:00:00 GMT ");

// The following statement sets the last update date (expressed by Greenwich Mean Time) on this page to the current day, and forces the browser to obtain the latest information.
Header ("Last-Modified:". gmdate ("D, d m y h: I: s"). "GMT ");

// Tell the client browser not to use the cache, HTTP 1.1 protocol
Header ("Cache-Control: no-cache, must-revalidate ");

// Tells the client browser not to use the cache and is compatible with the HTTP 1.0 Protocol
Header ("Pragma: no-cache ");

?>

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.