ILIAS
Release_4_4_x_branch Revision 61816
|
Public Member Functions | |
open ($savePath, $sessionName) | |
Open session. | |
close () | |
Close session. | |
read ($id) | |
Read session data with ID. | |
write ($id, $sessionData) | |
Write session data with ID. | |
destroy ($id) | |
Destroy session with ID. | |
gc ($maxLifetime) | |
Session garbage collection. | |
Public Member Functions inherited from Slim_Session_Handler | |
register (Slim $app) | |
Register session handler. |
Additional Inherited Members | |
Protected Attributes inherited from Slim_Session_Handler | |
$app |
Definition at line 45 of file Cookies.php.
Slim_Session_Handler_Cookies::close | ( | ) |
Close session.
Reimplemented from Slim_Session_Handler.
Definition at line 51 of file Cookies.php.
Slim_Session_Handler_Cookies::destroy | ( | $id | ) |
Destroy session with ID.
string | $id | The session identifier |
Reimplemented from Slim_Session_Handler.
Definition at line 63 of file Cookies.php.
Slim_Session_Handler_Cookies::gc | ( | $maxLifetime | ) |
Session garbage collection.
Executed when the PHP session garbage collector is invoked; should remove all session data older than the $maxLifetime
.
int | $maxLifetime |
Reimplemented from Slim_Session_Handler.
Definition at line 67 of file Cookies.php.
Slim_Session_Handler_Cookies::open | ( | $savePath, | |
$sessionName | |||
) |
Open session.
string | $savePath | |
string | $sessionName |
Reimplemented from Slim_Session_Handler.
Definition at line 47 of file Cookies.php.
Slim_Session_Handler_Cookies::read | ( | $id | ) |
Read session data with ID.
string | $id | The session identifier |
Reimplemented from Slim_Session_Handler.
Definition at line 55 of file Cookies.php.
Slim_Session_Handler_Cookies::write | ( | $id, | |
$sessionData | |||
) |
Write session data with ID.
The "write" handler is not executed until after the output stream is closed. Thus, output from debugging statements in the "write" handler will never be seen in the browser. If debugging output is necessary, it is suggested that the debug output be written to a file instead.
string | $id | The session identifier |
mixed | $sessionData | The session data |
Reimplemented from Slim_Session_Handler.
Definition at line 59 of file Cookies.php.