mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-27 09:49:22 +02:00
18 lines
307 B
PHP
18 lines
307 B
PHP
<?php
|
|
|
|
if(PHP_SAPI !== 'cli') {
|
|
die('This script can be run only in command line mode.');
|
|
}
|
|
|
|
require_once __DIR__ . '/../../common.php';
|
|
require_once SYSTEM . 'functions.php';
|
|
require_once SYSTEM . 'init.php';
|
|
|
|
if(clearCache()) {
|
|
echo 'Cache cleared.';
|
|
}
|
|
else {
|
|
echo 'Unexpected error.';
|
|
}
|
|
|
|
echo PHP_EOL; |