Toggle navigation
Hot Examples
JP
EN
RU
DE
FR
ES
PT
IT
JP
ZH
KO
PHP
PHP
C#
Java
Go
C++
Python
JS
TS
検索
Home
Xpressengine
Support
CacheInterface
PHP Interface Xpressengine\Support\CacheInterface
See link:
https://xpressengine.io
Author:
XE Developers (
[email protected]
)
ファイルを表示
Open project: xpressengine/xpressengine
Interface Usage Examples
Public Methods
Method
Description
forget
(
string
$key
) :
void
remove
get
(
string
$key
) :
mixed
getter
has
(
string
$key
) :
boolean
has
put
(
string
$key
,
mixed
$value
,
integer
$minutes
= null ) :
mixed
setter
Method Details
forget()
public
method
remove
public
forget
(
string
$key
) :
void
$key
string
key name
return
void
get()
public
method
getter
public
get
(
string
$key
) :
mixed
$key
string
key name
return
mixed
has()
public
method
has
public
has
(
string
$key
) :
boolean
$key
string
key name
return
boolean
put()
public
method
setter
public
put
(
string
$key
,
mixed
$value
,
integer
$minutes
= null ) :
mixed
$key
string
key name
$value
mixed
the value
$minutes
integer
expire time
return
mixed