1

如何删除当前页面的 com_content 缓存?

我尝试过的东西,但没有用。

$cache =& JFactory::getCache();
$cache->clean(413, "com_content");
4

1 回答 1

1
<?php
$cache =& JFactory::getCache();
$cache->cleanCache(413, "com_content");
?>
于 2013-10-26T13:20:55.700 回答