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