Also clean PHP 5.5 opcache

This commit is contained in:
kondou 2013-07-28 16:33:03 +02:00
parent fa35650e0a
commit 8cd671c207

View File

@ -871,6 +871,10 @@ class OC_Util {
if (function_exists('xcache_clear_cache')) {
xcache_clear_cache(XC_TYPE_VAR, 0);
}
// Opcache (PHP >= 5.5)
if (function_exists('opcache_reset')) {
opcache_reset();
}
}
/**