htmly/system/admin/views/clear-cache.html.php
2015-03-30 19:06:21 +02:00

12 lines
No EOL
153 B
PHP

<?php
rebuilt_cache('all');
foreach (glob('cache/page/*.cache', GLOB_NOSORT) as $file) {
unlink($file);
}
echo 'All cache has been deleted!';
?>