Files
SkinbaseNova/.deploy/artwork-evolution-release/public/opcache-reset.php
2026-04-18 17:02:56 +02:00

9 lines
204 B
PHP

<?php
// TEMPORARY — delete after use
if (function_exists('opcache_reset')) {
opcache_reset();
echo "OPcache reset OK — " . date('H:i:s');
} else {
echo "opcache_reset() not available";
}