11 lines
210 B
PHP
11 lines
210 B
PHP
<?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";
|