Cache Cleaner
";
} else {
echo "❌ Failed to clear OPcache.
";
}
} else {
echo "❌ OPcache is not enabled or available.
";
}
// Clear APCu Cache
if (function_exists('apcu_clear_cache')) {
apcu_clear_cache();
echo "✅ APCu cache cleared successfully.
";
} else {
echo "❌ APCu is not enabled or available.
";
}
// Clear Realpath Cache
if (function_exists('clearstatcache')) {
clearstatcache();
echo "✅ Realpath cache cleared successfully.
";
} else {
echo "❌ Failed to clear Realpath cache.
";
}
echo "🎉 Cache cleaning process completed.";
}
?>