<?php

echo "Resetting OPcache..." . PHP_EOL;
if (opcache_reset() === true) {
    echo "OPcache reset." . PHP_EOL;
} else {
    echo "OPcache does not appear to be enabled." . PHP_EOL;
}
