Properties

$bind

$bind : array

绑定对象

Type

array

$alwaysNewInstance

$alwaysNewInstance : boolean

始终创建新的对象实例

Type

boolean

Methods

bind()

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

绑定类的静态代理

Parameters

string|array $name

类标识

string $class

类名

Returns

object

instance()

instance(  $args) : mixed

带参数实例化当前Facade类

Parameters

$args

Returns

mixed

make()

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

调用类的实例

Parameters

string $class

类名或者标识

array|true $args

变量

boolean $newInstance

是否每次创建新的实例

Returns

mixed

__callStatic()

__callStatic(  $method,   $params) 

Parameters

$method
$params

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
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

check()

check(array  $config) : boolean

static 检查日志写入权限

Parameters

array $config

Returns

boolean

save()

save() : boolean

static 保存调试信息

Returns

boolean

write()

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

static 实时写入日志信息

Parameters

mixed $msg
string $type
boolean $force

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 = array(), boolean  $newInstance = false) : object

创建Facade实例

Parameters

string $class

类名或标识

array $args

变量

boolean $newInstance

是否每次创建新的实例

Returns

object

getFacadeClass()

getFacadeClass() : string

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

Returns

string