\think\facadeConfig

Summary

Methods
Properties
Constants
bind()
instance()
make()
__callStatic()
load()
has()
pull()
get()
set()
reset()
remove()
setYaconf()
No public properties found
No constants found
createFacade()
getFacadeClass()
$bind
$alwaysNewInstance
N/A
No private methods found
No private properties found
N/A

Properties

$bind

$bind : array

绑定对象

Type

array

$alwaysNewInstance

$alwaysNewInstance : bool

始终创建新的对象实例

Type

bool

Methods

bind()

bind(string|array  $name, string  $class = null) : object

绑定类的静态代理

Parameters

string|array $name

类标识

string $class

类名

Returns

object —

instance()

instance(mixed  ...$args) : mixed

带参数实例化当前Facade类

Parameters

mixed $args variadic

Returns

mixed —

make()

make(string  $class, array|true  $args = [], bool  $newInstance = false) : mixed

调用类的实例

Parameters

string $class

类名或者标识

array|true $args

变量

bool $newInstance

是否每次创建新的实例

Returns

mixed —

__callStatic()

__callStatic(mixed  $method, mixed  $params) : mixed

Parameters

mixed $method
mixed $params

Returns

mixed —

load()

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

static 加载配置文件

Parameters

string $file
string $name = ''

Returns

array —

has()

has(string  $name) : bool

static 检测配置是否存在

Parameters

string $name

Returns

bool —

pull()

pull(string  $name) : array

static 获取一级配置参数

Parameters

string $name

Returns

array —

get()

get(string  $name, mixed  $default = null) : mixed

static 获取配置参数

Parameters

string $name
mixed $default = null

Returns

mixed —

set()

set(mixed  $name, mixed  $value = null) : array

static 设置配置参数

Parameters

mixed $name
mixed $value = null

Returns

array —

reset()

reset(string  $name ='') : array

static 重置配置参数

Parameters

string $name =''

Returns

array —

remove()

remove(string  $name = '') : void

static 移除配置

Parameters

string $name = ''

setYaconf()

setYaconf(mixed  $yaconf) : void

static 设置开启Yaconf 或者指定配置文件名

Parameters

mixed $yaconf

createFacade()

createFacade(string  $class = '', array  $args = [], bool  $newInstance = false) : object

创建Facade实例

Parameters

string $class

类名或标识

array $args

变量

bool $newInstance

是否每次创建新的实例

Returns

object —

getFacadeClass()

getFacadeClass() : string

获取当前Facade对应类名(或者已经绑定的容器对象标识)

Returns

string —