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 —
set() set(mixed $name, string $value = null, string $range = '') : mixed static 设置语言定义 Parameters mixed $name string $value = null string $range = '' Returns mixed —
load() load(mixed $file, string $range = '') : array static 加载语言定义 Parameters mixed $file string $range = '' Returns array —
get() get(string $name = null, array $vars = [], string $range = '') : mixed static 获取语言定义 Parameters string $name = null array $vars = [] string $range = '' Returns mixed —
has() has(string $name, string $range = '') : mixed static 获取语言定义 Parameters string $name string $range = '' Returns mixed —
saveToCookie() saveToCookie(string $lang = null) : void static 设置当前语言到Cookie Parameters string $lang = null
setLangCookieVar() setLangCookieVar(string $var) : void static 设置语言的cookie保存变量 Parameters string $var
createFacade() createFacade(string $class = '', array $args = [], bool $newInstance = false) : object 创建Facade实例 Parameters string $class 类名或标识 array $args 变量 bool $newInstance 是否每次创建新的实例 Returns object —