2012-09-26 49 views

回答

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 
?> 
+0

我不想刪除緩存,我只需要刪除最大年齡參數。 'session_cache_expire(0);'只會設置'max-age = 0',它不會刪除它。 – ProgrammerGirl

+0

不知道爲什麼你想這樣做,但這可能有所幫助。 http://serverfault.com/questions/295982/htaccess-how-to-remove-cache-controls-max-age – raidenace