Joomla清理当前页面(com_content)缓存

时间:2013-10-26 13:12:33

标签: joomla

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

我试过的东西,但不起作用。

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

1 个答案:

答案 0 :(得分:1)

<?php
$cache =& JFactory::getCache();
$cache->cleanCache(413, "com_content");
?>