Clear available opcaches in php

Sometimes there is need to clear cache for opcaches but you can be not quite sure what cache is used for this hoster and you have no time to check it. For this case you can use following code.

<?php

clearstatcache(true);
if(function_exists('opcache_reset')) opcache_reset();
if(function_exists('eaccelerator_clear')) eaccelerator_clear();

 

Leave a Comment.