Methods |
public
|
__construct(string $storageKey = '_sf2_meta', int $updateThreshold = 0)
Parameters
$storageKey |
The key used to store bag in the session
|
$updateThreshold |
The time to wait between two UPDATED updates
|
|
#
|
public
|
initialize(array &$array): void
Initializes the Bag.
|
#
|
public
|
getLifetime(): int
Gets the lifetime that the session cookie was set with.
Gets the lifetime that the session cookie was set with.
|
#
|
public
|
stampNew(int|null $lifetime = null): void
Stamps a new session's metadata.
Stamps a new session's metadata.
Parameters
$lifetime |
Sets the cookie lifetime for the session cookie. A null value
will leave the system settings unchanged, 0 sets the cookie
to expire with browser session. Time is in seconds, and is
not a Unix timestamp.
|
|
#
|
public
|
getStorageKey(): string
Gets the storage key for this bag.
Gets the storage key for this bag.
Implements
|
#
|
public
|
getCreated(): int
Gets the created timestamp metadata.
Gets the created timestamp metadata.
Returns
|
#
|
public
|
getLastUsed(): int
Gets the last used metadata.
Gets the last used metadata.
Returns
|
#
|
public
|
clear(): mixed
Clears out data from bag.
Clears out data from bag.
Returns
Whatever data was contained
Implements
|
#
|
public
|
getName(): string
Gets this bag's name.
|
#
|
public
|
setName(string $name): void
Sets name.
|
#
|