phpfastcache用于使用HTTP标头缓存整个网页

时间:2015-08-12 05:48:03

标签: php caching http-headers lamp

我想使用像phpfastcache这样的输出缓存来缓存整个网页的内容,并在phpfastcache网站上给出以下示例代码

<?php
// use Files Cache for Whole Page / Widget
$cache = phpFastCache("files");

$html = $cache->widget_1;

if($html == null) {
    $html = Render Your Page || Widget || "Hello World";
    // Save to Cache 30 minutes
    $cache->widget_1 = array($html, 1800);
}

echo or return your $html;
?>

我还希望为我的网页(如Etag或Last-modified标头)使用标头作为验证器,使用Expires和Cache-control来提供刷新信息。

如何使用phpfastcache实现这些头文件

0 个答案:

没有答案