mirror of
https://github.com/danpros/htmly.git
synced 2026-04-22 13:36:22 +05:30
12 lines
No EOL
153 B
PHP
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!';
|
|
|
|
?>
|