用于获取表 config 中的配置选项
modstart_config( $key, $default, $useCache )
- 参数:
$key
string
配置名称 - 参数:
$default
string|array|boolean|integer
默认值 - 参数:
$useCache
boolean
启用缓存,默认为true - 返回:
string|array|boolean|integer|\ModStart\Core\Config\MConfig
返回配置值或配置对象
代码示例
// 网站名称
modstart_config('siteName','[默认名称]');
// 获取一个配置数组,数组需存储成 json 格式
modstart_config()->getArray('xxx')
// 设置配置项
modstart_config()->set('xxx','aaa')