$wrapper
$wrapper : boolean
Flag if handler wraps an internal PHP session handler (using \SessionHandler).
AbstractProxy.
open(string $savePath, string $sessionName) : boolean
Re-initializes existing session, or creates a new one.
| string | $savePath | Save path |
| string | $sessionName | Session name, see http://php.net/function.session-name.php |
true on success, false on failure
write( $id, string $data) : boolean
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().
| $id | ||
| string | $data | Serialized session data to save |
true on success, false on failure