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 —
has() has(string $name, string $prefix = null) : bool static 判断session数据 Parameters string $name string $prefix = null Returns bool —
prefix() prefix(string $prefix = '') : mixed static 设置或者获取session作用域(前缀) Parameters string $prefix = '' Returns mixed —
get() get(string $name = '', string $prefix = null) : mixed static session获取 Parameters string $name = '' string $prefix = null Returns mixed —
pull() pull(string $name, string $prefix = null) : mixed static session获取并删除 Parameters string $name string $prefix = null Returns mixed —
push() push(string $key, mixed $value) : void static 添加数据到一个session数组 Parameters string $key mixed $value
set() set(string $name, mixed $value, string $prefix = null) : void static 设置session数据 Parameters string $name mixed $value string $prefix = null
flash() flash(string $name, mixed $value = null) : void static session设置 下一次请求有效 Parameters string $name mixed $value = null
delete() delete(string $name, string $prefix = null) : void static 删除session数据 Parameters string $name string $prefix = null
regenerate() regenerate(bool $delete = false) : void static 重新生成session_id Parameters bool $delete = false
createFacade() createFacade(string $class = '', array $args = [], bool $newInstance = false) : object 创建Facade实例 Parameters string $class 类名或标识 array $args 变量 bool $newInstance 是否每次创建新的实例 Returns object —