mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-08 15:42:48 +08:00
改进Config类的parse方法
This commit is contained in:
@@ -33,6 +33,7 @@ class Config
|
|||||||
* @param string $type 配置解析类型
|
* @param string $type 配置解析类型
|
||||||
* @param string $name 配置名(如设置即表示二级配置)
|
* @param string $name 配置名(如设置即表示二级配置)
|
||||||
* @param string $range 作用域
|
* @param string $range 作用域
|
||||||
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public static function parse($config, $type = '', $name = '', $range = '')
|
public static function parse($config, $type = '', $name = '', $range = '')
|
||||||
{
|
{
|
||||||
@@ -41,7 +42,7 @@ class Config
|
|||||||
$type = pathinfo($config, PATHINFO_EXTENSION);
|
$type = pathinfo($config, PATHINFO_EXTENSION);
|
||||||
}
|
}
|
||||||
$class = false !== strpos($type, '\\') ? $type : '\\think\\config\\driver\\' . ucwords($type);
|
$class = false !== strpos($type, '\\') ? $type : '\\think\\config\\driver\\' . ucwords($type);
|
||||||
self::set((new $class())->parse($config), $name, $range);
|
return self::set((new $class())->parse($config), $name, $range);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user