How to clear browser cache with PHP
If you are looking for a way to clear browser cache with PHP, try the following method: You can use it.
Use the header() function to send the following headers:
<code class="php">header("Cache-Control: no-cache, must-revalidate"); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Content-Type: application/xml; charset=utf-8");</code>
Sending these headers prevents the browser from caching responses from PHP scripts.
The above is the detailed content of How do I Clear Browser Cache using PHP?. For more information, please follow other related articles on the PHP Chinese website!