interface PersistentDataHandler

Interface PersistentDataInterface

Methods

mixed
get(string $key)

从持久化数据存储中根据key获取一个value

set(string $key, mixed $value)

向持久化数据存储中存储一对key,value

Details

at line 21
mixed get(string $key)

从持久化数据存储中根据key获取一个value

Parameters

string $key

Return Value

mixed

at line 29
set(string $key, mixed $value)

向持久化数据存储中存储一对key,value

Parameters

string $key
mixed $value