Files
GSB-Construction/public/opcache_clear.php
Christopher Boyles 32c3e3af69
Some checks failed
Tests / PHP 8.3 (push) Has been cancelled
Tests / PHP 8.4 (push) Has been cancelled
Tests / PHP 8.5 (push) Has been cancelled
Team Roster Feature
2026-06-08 17:45:15 +08:00

9 lines
201 B
PHP

<?php
if (function_exists('opcache_reset')) {
opcache_reset();
echo "OPcache cleared successfully!";
} else {
echo "OPcache is not enabled or function does not exist.";
}
unlink(__FILE__);