Files
sistema_funcionando_lastwar/clear_opcache.php
nickpons666 7953a56501 Merge: Complete merge of remote changes, including user's requested additions.
This commit completes the merge process, incorporating remote changes that conflicted with local modifications. It also stages and commits all remaining modified and untracked files as per the user's instruction to 'upload everything without exception'.
2026-02-08 16:33:43 -06:00

11 lines
210 B
PHP
Executable File

<?php
// Clear PHP opcache if enabled
if (function_exists('opcache_reset')) {
opcache_reset();
echo "PHP opcache cleared.\n";
}
// Clear file cache
clearstatcache();
echo "File stat cache cleared.\n";