123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?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 = true)
- {
- $callable = function () use ($key) {
- return app()->make(SystemConfigServices::class)->getConfigValue($key);
- };
- try {
- if ($isCaChe) {
- return CacheService::remember(self::CACHE_SYSTEM . '_' . $key, $callable);
- }
- return $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 = true)
- {
- $callable = function () use ($keys) {
- return Arr::getDefaultValue($keys, app()->make(SystemConfigServices::class)->getConfigAll($keys));
- };
- try {
- if ($isCaChe){
- return CacheService::remember(self::CACHE_SYSTEM . '_' . md5(implode(',', $keys)), $callable);
- }
- return $callable();
- } catch (\Throwable $e) {
- return Arr::getDefaultValue($keys);
- }
- }
- }
|