How to clear cache in Opencart from PHP

caching, opencart, php, server, vqmod

Solution

In OpenCart there are 3 places that store cache

image cache is located at `public_html/image/cache`

if you have vQmod `public_html/vqmod/vqcache`

system (data) cache `public_html/system/cache`

You can delete files within these folders - do not delete the `cache` folders - only the content inside.

I hope this helps.

Problem

I need to clear cache on certain condition from PHP code. How can I do so. I know that there is object Cache exists in opencart engine, but how do delete cache correctly. Or it is possible to delete just folders ? Please give advice.

Original source