Fix: Corrige errores en recurrentes y limpia el repositorio
This commit is contained in:
10
clear_opcache.php
Normal file
10
clear_opcache.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?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";
|
||||
Reference in New Issue
Block a user