\think\facadeCookie

Facade管理类

Summary

Methods
Properties
Constants
instance()
make()
__callStatic()
get()
has()
set()
forever()
delete()
getCookie()
save()
No public properties found
No constants found
createFacade()
getFacadeClass()
$alwaysNewInstance
N/A
No private methods found
No private properties found
N/A

Properties

$alwaysNewInstance

$alwaysNewInstance : bool

始终创建新的对象实例

Type

bool

Methods

instance()

instance(mixed  ...$args) : object

带参数实例化当前Facade类

Parameters

mixed $args variadic

Returns

object —

make()

make(string  $class, array|true  $args = [], bool  $newInstance = false) : object

调用类的实例

Parameters

string $class

类名或者标识

array|true $args

变量

bool $newInstance

是否每次创建新的实例

Returns

object —

__callStatic()

__callStatic(mixed  $method, mixed  $params) : mixed

Parameters

mixed $method
mixed $params

Returns

mixed —

get()

get(mixed  $name = '', string  $default = null) : mixed

获取cookie

Parameters

mixed $name = ''
string $default = null

Returns

mixed —

has()

has(string  $name) : bool

是否存在Cookie参数

Parameters

string $name

Returns

bool —

set()

set(string  $name, string  $value, mixed  $option = null) : void

Cookie 设置

Parameters

string $name
string $value
mixed $option = null

forever()

forever(string  $name, string  $value = '', mixed  $option = null) : void

永久保存Cookie数据

Parameters

string $name
string $value = ''
mixed $option = null

delete()

delete(string  $name) : void

Cookie删除

Parameters

string $name

getCookie()

getCookie() : array

获取cookie保存数据

Returns

array —

save()

save() : void

保存Cookie

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 —