Toggle navigation
Hot Examples
FR
EN
RU
DE
FR
ES
PT
IT
JP
ZH
KO
PHP
PHP
C#
Java
Go
C++
Python
JS
TS
Rechercher
Accueil
lithium
storage
cache
strategy
Base64
PHP Class lithium\storage\cache\strategy\Base64
Inheritance:
extends
lithium\core\Object
Afficher le fichier
Open project: unionofrad/lithium
Méthodes publiques
Méthode
Description
read
(
string
$data
) :
mixed
Read strategy method.
write
(
mixed
$data
) :
string
Write strategy method.
Method Details
read()
public
méthode
Unserializes the passed data.
See link:
PHP Manual: base64_decode()
public
read
(
string
$data
) :
mixed
$data
string
Serialized data.
Résultat
mixed
Result of unserialization.
write()
public
méthode
Base64-encodes the passed data.
See link:
PHP Manual: base64_encode()
public
write
(
mixed
$data
) :
string
$data
mixed
The data to be serialized.
Résultat
string
Serialized data.