0

如何max-age从 PHP 中的缓存标头中删除参数?

如果我注释掉 中的session.cache_expire变量PHP.ini,它只会将 max-age 设置为 10800。

4

1 回答 1

0
session_cache_expire(0);

或者如果要删除缓存,请使用:

<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
?>
于 2012-09-26T19:45:11.950 回答