You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.4 KiB
81 lines
2.4 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\services\system\log;
|
|
|
|
|
|
use app\services\BaseServices;
|
|
|
|
/**
|
|
* Class ClearServices
|
|
* @package app\services\system\log
|
|
*/
|
|
class ClearServices extends BaseServices
|
|
{
|
|
/** 递归删除文件
|
|
* @param $dirName
|
|
* @param bool $subdir
|
|
*/
|
|
protected function delDirAndFile($dirName)
|
|
{
|
|
$list = glob($dirName . '*');
|
|
foreach ($list as $file) {
|
|
if (is_dir($file))
|
|
$this->delDirAndFile($file . DS);
|
|
else
|
|
@unlink($file);
|
|
}
|
|
@rmdir($dirName);
|
|
}
|
|
|
|
/**
|
|
* 删除日志
|
|
*/
|
|
public function deleteLog()
|
|
{
|
|
$root = app()->getRootPath() . 'runtime' . DS;
|
|
$this->delDirAndFile($root . 'admin' . DS . 'log' . DS);
|
|
$this->delDirAndFile($root . 'api' . DS . 'log' . DS);
|
|
$this->delDirAndFile($root . 'log' . DS);
|
|
}
|
|
|
|
/**
|
|
* 刷新数据缓存
|
|
*/
|
|
public function refresCache()
|
|
{
|
|
$root = app()->getRootPath() . 'runtime' . DS;
|
|
$adminRoute = $root . 'admin';
|
|
$apiRoute = $root . 'api';
|
|
$cacheRoute = $root . 'cache';
|
|
$cache = [];
|
|
|
|
if (is_dir($adminRoute))
|
|
$cache[$adminRoute] = scandir($adminRoute);
|
|
if (is_dir($apiRoute))
|
|
$cache[$apiRoute] = scandir($apiRoute);
|
|
if (is_dir($cacheRoute))
|
|
$cache[$cacheRoute] = scandir($cacheRoute);
|
|
|
|
foreach ($cache as $p => $list) {
|
|
foreach ($list as $file) {
|
|
if (!in_array($file, ['.', '..', 'log', 'schema', 'admin.php'])) {
|
|
$path = $p . DS . $file;
|
|
if (is_file($path)) {
|
|
@unlink($path);
|
|
} else {
|
|
$this->delDirAndFile($path . DS);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|