Cheetah
Main Page
Related Pages
Namespaces
Namespace List
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
$
a
b
c
d
e
f
h
i
l
m
o
p
r
s
t
u
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Pages
plugins
facebook-php-sdk
src
Facebook
PersistentData
FacebookMemoryPersistentDataHandler.php
Go to the documentation of this file.
1
<?
php
24
namespace
Facebook\PersistentData
;
25
31
class
FacebookMemoryPersistentDataHandler
implements
PersistentDataInterface
32
{
36
protected
$sessionData
= [];
37
41
public
function
get
($key)
42
{
43
return
isset($this->sessionData[$key]) ? $this->sessionData[$key] :
null
;
44
}
45
49
public
function
set
($key, $value)
50
{
51
$this->sessionData[$key] = $value;
52
}
53
}
php
Facebook\PersistentData\PersistentDataInterface
Definition:
PersistentDataInterface.php:32
Facebook\PersistentData
Definition:
FacebookMemoryPersistentDataHandler.php:24
Facebook\PersistentData\FacebookMemoryPersistentDataHandler\$sessionData
$sessionData
Definition:
FacebookMemoryPersistentDataHandler.php:36
Facebook\PersistentData\FacebookMemoryPersistentDataHandler
Definition:
FacebookMemoryPersistentDataHandler.php:32
Generated by
1.8.20