Magento Clean Cache through PHP
Magento Clean Cache through PHP : Code for cleaning the magento cache via php is as follows
$app = Mage::app();
if ($app != null) {
$cache = $app->getCache();
if ($cache != null)
{
$cache->clean();
}
}
Categories:
magento
Tags:
magento cache
View Comments
Comment or Ask a Question
Quick Links