我正在尝试将 phpFastCache 集成到我的应用程序中。
这是它在文档中所说的:
<?php
// try to get from Cache first.
$html = phpFastCache::get(array("files" => "keyword,page"));
if($html == null) {
$html = Render Your Page || Widget || "Hello World";
phpFastCache::set(array("files" => "keyword,page"),$html);
}
echo $html;
?>
我没有找到如何用我的页面替换“RENDER YOUR PAGE”。我尝试了“include”、“get_file_content”...没有任何效果。
任何人都可以给我一个例子吗?
谢谢