\thinkConfig

配置管理类

Summary

Methods
Properties
Constants
__construct()
__make()
load()
has()
get()
set()
No public properties found
No constants found
parse()
pull()
$config
$path
$ext
N/A
No private methods found
No private properties found
N/A

Properties

$config

$config : array

配置参数

Type

array

$path

$path : string

配置文件目录

Type

string

$ext

$ext : string

配置文件后缀

Type

string

Methods

__construct()

__construct(\think\string  $path = null, \think\string  $ext = '.php') 

构造方法

Parameters

\think\string $path
\think\string $ext

__make()

__make(\think\App  $app) 

Parameters

\think\App $app

load()

load(string  $file, string  $name = '') : array

加载配置文件(多种格式)

Parameters

string $file

配置文件名

string $name

一级配置名

Returns

array

has()

has(string  $name) : boolean

检测配置是否存在

Parameters

string $name

配置参数名(支持多级配置 .号分割)

Returns

boolean

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

pull()

pull(string  $name) : array

获取一级配置

Parameters

string $name

一级配置名

Returns

array