Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于缓存页面,我在索引页面中设置了这个
ini_set('session.cache_limiter', 'private');
现在我想在注销过程中删除所有缓存的内容(想从用户浏览器中删除所有缓存的竞争)我该怎么做?
检查以下内容。
session_cache_limiter( 'nocache' );
或者
session_cache_expire(30);