-
initialize ($options = null)
Browse code
| $options |
An associative array of options
|
Available options:
* session_name: The cookie name (symfony by default)
* session_id: The session id (null by default)
* auto_start: Whether to start the session (true by default)
* session_cookie_lifetime: Cookie lifetime
* session_cookie_path: Cookie path
* session_cookie_domain: Cookie domain
* session_cookie_secure: Cookie secure
* session_cookie_httponly: Cookie http only (only for PHP >= 5.2)
The default values for all 'session_cookie_*' options are those returned by the session_get_cookie_params() function
-
| $key |
A unique key identifying your data
|
Reads data from this storage.
The preferred format for a key is directory style so naming conflicts can be avoided.
returns Data associated with the key
-
(boolean) regenerate ($destroy = false)
Browse code
| $destroy |
Destroy session when regenerating?
|
Regenerates id that represents this storage.
returns True if session regenerated, false if error
-
| $key |
A unique key identifying your data
|
Removes data from this storage.
The preferred format for a key is directory style so naming conflicts can be avoided.
returns Data associated with the key
-
Executes the shutdown procedure.
-
| $key |
A unique key identifying your data
|
| $data |
Data associated with your key
|
Writes data to this storage.
The preferred format for a key is directory style so naming conflicts can be avoided.