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.
77 lines
2.4 KiB
77 lines
2.4 KiB
9 months ago
|
<?php
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Author: CRMEB Team <admin@crmeb.com>
|
||
|
// +----------------------------------------------------------------------
|
||
|
|
||
|
namespace crmeb\services;
|
||
|
|
||
|
use app\services\system\config\SystemConfigServices;
|
||
|
use crmeb\utils\Arr;
|
||
|
|
||
|
/** 获取系统配置服务类
|
||
|
* Class SystemConfigService
|
||
|
* @package service
|
||
|
*/
|
||
|
class SystemConfigService
|
||
|
{
|
||
|
const CACHE_SYSTEM = 'system_config';
|
||
|
|
||
|
/**
|
||
|
* 获取单个配置效率更高
|
||
|
* @param string $key
|
||
|
* @param $default
|
||
|
* @param bool $isCaChe 是否获取缓存配置
|
||
|
* @return bool|mixed|string
|
||
|
*/
|
||
|
public static function get(string $key, $default = '', bool $isCaChe = false)
|
||
|
{
|
||
|
/** @var SystemConfigServices $service */
|
||
|
$service = app()->make(SystemConfigServices::class);
|
||
|
|
||
|
$callable = function () use ($service, $key) {
|
||
|
return $service->getConfigValue($key);
|
||
|
};
|
||
|
|
||
|
try {
|
||
|
return $callable();
|
||
|
// if ($isCaChe) {
|
||
|
// return $callable();
|
||
|
// }
|
||
|
// return CacheService::remember($key, $callable);
|
||
|
} catch (\Throwable $e) {
|
||
|
return $default;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取多个配置
|
||
|
* @param array $keys 示例 [['appid','1'],'appkey']
|
||
|
* @param bool $isCaChe 是否获取缓存配置
|
||
|
* @return array
|
||
|
*/
|
||
|
public static function more(array $keys, bool $isCaChe = false)
|
||
|
{
|
||
|
/** @var SystemConfigServices $service */
|
||
|
$service = app()->make(SystemConfigServices::class);
|
||
|
|
||
|
$callable = function () use ($service, $keys) {
|
||
|
return Arr::getDefaultValue($keys, $service->getConfigAll($keys));
|
||
|
};
|
||
|
try {
|
||
|
if ($isCaChe)
|
||
|
return $callable();
|
||
|
|
||
|
return CacheService::remember(md5(implode(',', $keys)), $callable);
|
||
|
} catch (\Throwable $e) {
|
||
|
return Arr::getDefaultValue($keys);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|