PHP緩存設置的方法有多種,以下是其中幾種常用的方法:
ob_start():開啟輸出緩存
ob_end_flush():輸出緩存并關閉緩存
ob_clean():清空輸出緩存
header(“Cache-Control: no-cache”): 禁用緩存
header(“Cache-Control: max-age=3600”): 設置緩存有效期為3600秒
header("Last-Modified: " . gmdate(‘D, d M Y H:i:s’, time()) . ’ GMT’): 設置最后修改時間
header("Expires: " . gmdate(‘D, d M Y H:i:s’, time() + 3600) . ’ GMT’): 設置緩存過期時間
使用memcache擴展:$memcache = new Memcache; $memcache->connect(‘localhost’, 11211);
使用Redis擴展:$redis = new Redis; $redis->connect(‘localhost’, 6379);
使用緩存:Cache::put(‘key’, ‘value’, $minutes);
獲取緩存:$value = Cache::get(‘key’);
需要根據具體的緩存需求和項目環境選擇適合的方法。