mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-24 20:06:09 +08:00
72 lines
1.3 KiB
PHP
72 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace App\Traits;
|
|
|
|
use App\Caches\Setting as SettingCache;
|
|
use App\Library\Cache\Backend\Redis as RedisCache;
|
|
use App\Library\Logger as AppLogger;
|
|
use Phalcon\Config as PhConfig;
|
|
use Phalcon\Di as Di;
|
|
use Phalcon\Logger\Adapter\File as PhLogger;
|
|
|
|
trait Service
|
|
{
|
|
|
|
/**
|
|
* @return PhConfig
|
|
*/
|
|
public function getConfig()
|
|
{
|
|
return Di::getDefault()->getShared('config');
|
|
}
|
|
|
|
/**
|
|
* @return RedisCache
|
|
*/
|
|
public function getCache()
|
|
{
|
|
return Di::getDefault()->getShared('cache');
|
|
}
|
|
|
|
/**
|
|
* @return \Redis
|
|
*/
|
|
public function getRedis()
|
|
{
|
|
return $this->getCache()->getRedis();
|
|
}
|
|
|
|
/**
|
|
* 获取Logger
|
|
*
|
|
* @param string $channel
|
|
* @return PhLogger
|
|
*/
|
|
public function getLogger($channel = null)
|
|
{
|
|
$logger = new AppLogger();
|
|
|
|
$channel = $channel ?: 'common';
|
|
|
|
return $logger->getInstance($channel);
|
|
}
|
|
|
|
/**
|
|
* 获取某组配置项
|
|
*
|
|
* @param string $section
|
|
* @return array
|
|
*/
|
|
public function getSettings($section)
|
|
{
|
|
$cache = new SettingCache();
|
|
|
|
return $cache->get($section);
|
|
}
|
|
|
|
} |