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 —

init()

init(array  $config = []) : \think\Log

static 日志初始化

Parameters

array $config = []

Returns

\think\Log —

getLog()

getLog(string  $type = '') : mixed

static 获取日志信息

Parameters

string $type = ''

Returns

mixed —

record()

record(mixed  $msg, string  $type = 'info', array  $context = []) : \think\Log

static 记录日志信息

Parameters

mixed $msg
string $type = 'info'
array $context = []

Returns

\think\Log —

clear()

clear() : \think\Log

static 清空日志信息

Returns

\think\Log —

key()

key(string  $key) : \think\Log

static 当前日志记录的授权key

Parameters

string $key

Returns

\think\Log —

close()

close() : \think\Log

static 关闭本次请求日志写入

Returns

\think\Log —

check()

check(array  $config) : bool

static 检查日志写入权限

Parameters

array $config

Returns

bool —

save()

save() : bool

static 保存调试信息

Returns

bool —

write()

write(mixed  $msg, string  $type = 'info', bool  $force = false) : void

static 实时写入日志信息

Parameters

mixed $msg
string $type = 'info'
bool $force = false

log()

log(string  $level, mixed  $message, array  $context = []) : void

static 记录日志信息

Parameters

string $level
mixed $message
array $context = []

emergency()

emergency(mixed  $message, array  $context = []) : void

static 记录emergency信息

Parameters

mixed $message
array $context = []

alert()

alert(mixed  $message, array  $context = []) : void

static 记录alert信息

Parameters

mixed $message
array $context = []

critical()

critical(mixed  $message, array  $context = []) : void

static 记录critical信息

Parameters

mixed $message
array $context = []

error()

error(mixed  $message, array  $context = []) : void

static 记录error信息

Parameters

mixed $message
array $context = []

warning()

warning(mixed  $message, array  $context = []) : void

static 记录warning信息

Parameters

mixed $message
array $context = []

notice()

notice(mixed  $message, array  $context = []) : void

static 记录notice信息

Parameters

mixed $message
array $context = []

info()

info(mixed  $message, array  $context = []) : void

static 记录info信息

Parameters

mixed $message
array $context = []

debug()

debug(mixed  $message, array  $context = []) : void

static 记录debug信息

Parameters

mixed $message
array $context = []

sql()

sql(mixed  $message, array  $context = []) : void

static 记录sql信息

Parameters

mixed $message
array $context = []

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 —