9 lines
204 B
PHP
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";
|
|
}
|