__construct() __construct(string $path = null, string $ext = '.php') : mixed 构造方法 Parameters string $path string $ext Returns mixed —
load() load(string $file, string $name = '') : array 加载配置文件(多种格式) Parameters string $file 配置文件名 string $name 一级配置名 Returns array —
get() get(string $name = null, mixed $default = null) : mixed 获取配置参数 为空则获取所有配置 Parameters string $name 配置参数名(支持多级配置 .号分割) mixed $default 默认值 Returns mixed —
set() set(array $config, string $name = null) : array 设置配置参数 name为数组则为批量设置 Parameters array $config 配置参数 string $name 配置名 Returns array —
parse() parse(string $file, string $name) : array 解析配置文件 Parameters string $file 配置文件名 string $name 一级配置名 Returns array —