[ Index ] |
PHP Cross Reference of phpBB-3.2.11-deutsch |
[Source view] [Print] [Project Stats]
(no description)
File Size: | 102 lines (3 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
Interface: SessionHandlerInterface - X-Ref
SessionHandlerInterface for PHP < 5.4.open($savePath, $sessionName) X-Ref |
Re-initializes existing session, or creates a new one. param: string $savePath Save path param: string $sessionName Session name, see https://php.net/function.session-name.php return: bool true on success, false on failure |
close() X-Ref |
Closes the current session. return: bool true on success, false on failure |
read($sessionId) X-Ref |
Reads the session data. param: string $sessionId Session ID, see https://php.net/function.session-id return: string Same session data as passed in write() or empty string when non-existent or on failure |
write($sessionId, $data) X-Ref |
Writes the session data to the storage. Care, the session ID passed to write() can be different from the one previously received in read() when the session ID changed due to session_regenerate_id(). param: string $sessionId Session ID , see https://php.net/function.session-id param: string $data Serialized session data to save return: bool true on success, false on failure |
destroy($sessionId) X-Ref |
Destroys a session. param: string $sessionId Session ID, see https://php.net/function.session-id return: bool true on success, false on failure |
gc($maxlifetime) X-Ref |
Cleans up expired sessions (garbage collection). param: string|int $maxlifetime Sessions that have not updated for the last maxlifetime seconds will be removed return: bool true on success, false on failure |
Generated: Wed Nov 11 20:33:01 2020 | Cross-referenced by PHPXref 0.7.1 |