Magento – Clear Cache Programmatically
Just use the below code for clear cache programmatically:-try { $cacheTypes = Mage::app()->useCache(); foreach ($cacheTypes as $type => $option) { Mage::app()->getCacheInstance()->cleanType($type); } } catch (Exception $e) { Mage::log($e->getMessage()); } OR you can also use below code:- Mage::app()->cleanCache();