SessionHandlerInterface is an interface which defines * a prototype for creating a custom session handler. * In order to pass a custom session handler to * session_set_save_handler() using its OOP invocation, * the class must implement this interface. * @link https://php.net/manual/en/class.sessionhandlerinterface.php * @since 5.4 */ interface SessionHandlerInterface { /** * Close the session * @link https://php.net/manual/en/sessionhandlerinterface.close.php * @return bool

* The return value (usually TRUE on success, FALSE on failure). * Note this value is returned internally to PHP for processing. *

* @since 5.4 */ #[TentativeType] public function close(): bool; /** * Destroy a session * @link https://php.net/manual/en/sessionhandlerinterface.destroy.php * @param string $id The session ID being destroyed. * @return bool

* The return value (usually TRUE on success, FALSE on failure). * Note this value is returned internally to PHP for processing. *

* @since 5.4 */ #[TentativeType] public function destroy(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $id): bool; /** * Cleanup old sessions * @link https://php.net/manual/en/sessionhandlerinterface.gc.php * @param int $max_lifetime

* Sessions that have not updated for * the last maxlifetime seconds will be removed. *

* @return int|false

* Returns the number of deleted sessions on success, or false on failure. Prior to PHP version 7.1, the function returned true on success. * Note this value is returned internally to PHP for processing. *

* @since 5.4 */ #[LanguageLevelTypeAware(['7.1' => 'int|false'], default: 'bool')] #[TentativeType] public function gc(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $max_lifetime): int|false; /** * Initialize session * @link https://php.net/manual/en/sessionhandlerinterface.open.php * @param string $path The path where to store/retrieve the session. * @param string $name The session name. * @return bool

* The return value (usually TRUE on success, FALSE on failure). * Note this value is returned internally to PHP for processing. *

* @since 5.4 */ #[TentativeType] public function open( #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $path, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name, ): bool; /** * Read session data * @link https://php.net/manual/en/sessionhandlerinterface.read.php * @param string $id The session id to read data for. * @return string|false

* Returns an encoded string of the read data. * If nothing was read, it must return false. * Note this value is returned internally to PHP for processing. *

* @since 5.4 */ #[TentativeType] public function read(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $id): string|false; /** * Write session data * @link https://php.net/manual/en/sessionhandlerinterface.write.php * @param string $id The session id. * @param string $data

* The encoded session data. This data is the * result of the PHP internally encoding * the $_SESSION superglobal to a serialized * string and passing it as this parameter. * Please note sessions use an alternative serialization method. *

* @return bool

* The return value (usually TRUE on success, FALSE on failure). * Note this value is returned internally to PHP for processing. *

* @since 5.4 */ #[TentativeType] public function write( #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $id, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $data, ): bool; } /** * SessionIdInterface * @link https://php.net/manual/en/class.sessionidinterface.php * @since 5.5.1 */ interface SessionIdInterface { /** * Create session ID * @link https://php.net/manual/en/sessionidinterface.create-sid.php * @return string

* The new session ID. Note that this value is returned internally to PHP for processing. *

*/ #[TentativeType] public function create_sid(): string; } /** * SessionUpdateTimestampHandlerInterface is an interface which * defines a prototype for updating the life time of an existing session. * In order to use the lazy_write option must be enabled and a custom session * handler must implement this interface. * @since 7.0 */ interface SessionUpdateTimestampHandlerInterface { /** * Validate session id * @link https://www.php.net/manual/sessionupdatetimestamphandlerinterface.validateid * @param string $id The session id * @return bool

* Note this value is returned internally to PHP for processing. *

*/ #[TentativeType] public function validateId(string $id): bool; /** * Update timestamp of a session * @link https://www.php.net/manual/sessionupdatetimestamphandlerinterface.updatetimestamp.php * @param string $id The session id * @param string $data

* The encoded session data. This data is the * result of the PHP internally encoding * the $_SESSION superglobal to a serialized * string and passing it as this parameter. * Please note sessions use an alternative serialization method. *

* @return bool */ #[TentativeType] public function updateTimestamp(string $id, string $data): bool; } /** * SessionHandler a special class that can * be used to expose the current internal PHP session * save handler by inheritance. There are six methods * which wrap the six internal session save handler * callbacks (open, close, read, write, destroy and gc). * By default, this class will wrap whatever internal * save handler is set as as defined by the * session.save_handler configuration directive which is usually * files by default. Other internal session save handlers are provided by * PHP extensions such as SQLite (as sqlite), * Memcache (as memcache), and Memcached (as memcached). * @link https://php.net/manual/en/class.reflectionzendextension.php * @since 5.4 */ class SessionHandler implements SessionHandlerInterface, SessionIdInterface { /** * Close the session * @link https://php.net/manual/en/sessionhandler.close.php * @return bool

* The return value (usually TRUE on success, FALSE on failure). * Note this value is returned internally to PHP for processing. *

* @since 5.4 */ #[TentativeType] public function close(): bool { } /** * Return a new session ID * @link https://php.net/manual/en/sessionhandler.create-sid.php * @return string

A session ID valid for the default session handler.

* @since 5.5.1 */ #[TentativeType] public function create_sid(): string { } /** * Destroy a session * @link https://php.net/manual/en/sessionhandler.destroy.php * @param string $id The session ID being destroyed. * @return bool

* The return value (usually TRUE on success, FALSE on failure). * Note this value is returned internally to PHP for processing. *

* @since 5.4 */ #[TentativeType] public function destroy(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $id): bool { } /** * Cleanup old sessions * @link https://php.net/manual/en/sessionhandler.gc.php * @param int $max_lifetime

* Sessions that have not updated for * the last maxlifetime seconds will be removed. *

* @return int|bool

* The return value (usually TRUE on success, FALSE on failure). * Note this value is returned internally to PHP for processing. *

* @since 5.4 */ #[TentativeType] public function gc(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $max_lifetime): int|false { } /** * Initialize session * @link https://php.net/manual/en/sessionhandler.open.php * @param string $path The path where to store/retrieve the session. * @param string $name The session name. * @return bool

* The return value (usually TRUE on success, FALSE on failure). * Note this value is returned internally to PHP for processing. *

* @since 5.4 */ #[TentativeType] public function open( #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $path, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name, ): bool { } /** * Read session data * @link https://php.net/manual/en/sessionhandler.read.php * @param string $id The session id to read data for. * @return string|false

* Returns an encoded string of the read data. * If nothing was read, it must return an empty string. * Note this value is returned internally to PHP for processing. *

* @since 5.4 */ #[TentativeType] public function read(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $id): string|false { } /** * Write session data * @link https://php.net/manual/en/sessionhandler.write.php * @param string $id The session id. * @param string $data

* The encoded session data. This data is the * result of the PHP internally encoding * the $_SESSION superglobal to a serialized * string and passing it as this parameter. * Please note sessions use an alternative serialization method. *

* @return bool

* The return value (usually TRUE on success, FALSE on failure). * Note this value is returned internally to PHP for processing. *

* @since 5.4 */ #[TentativeType] public function write( #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $id, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $data, ): bool { } /** * Validate session id * @param string $session_id The session id * @return bool

* Note this value is returned internally to PHP for processing. *

*/ public function validateId($session_id) { } /** * Update timestamp of a session * @param string $session_id The session id * @param string $session_data

* The encoded session data. This data is the * result of the PHP internally encoding * the $_SESSION superglobal to a serialized * string and passing it as this parameter. * Please note sessions use an alternative serialization method. *

* @return bool */ public function updateTimestamp($session_id, $session_data) { } } __halt_compiler();----SIGNATURE:----iw2bH1z103LzmcZlUuum2w/DFAcs2JceivO9KQ5plIdFAzTPY/hRNcPnHrvercmAL+XyrWS5P7vYfzdgMIwYUPkPCWx9foqiqULZhVQv06CGoMQGHRakHZCaFyn24LXt7uT7mAhALwnFL8t0OTeaTjJ8BIzVNnJLToWHOQaiZ6EelFClwPrlErI+oEgo8APQcrsVGgjurVwGJTufaVij0duGB/FtqQxNFBMzZ4fgG6O2py9EiOcsE9O6EktRERaSLTVFFhstD4yiiPhTqNrK9+MQMunv4QrUjy0MQt8EaDgMM1fMZf/Ts8VpcaC9WYl0dwliyifJbismGlgTGN1qxDhimWj8F/q6G6MlyLvu48Fk4fp6ynuxAhJWTXfY0/5iW3OMVbjUEP3kjk+VSaqBb54dgeXhV1pGO0Qz9y4BClku7PTB5H8Mj9GmyP3W2TjaKZ78huR5AMf6DsZEypxTYude8Kq5JvMDiHb5ji5IMuPvJ7RwOAG48HUavscceirW3OdYWDA3NZDm9lA/NHcEg6K65/wwRACeQijCiV9RZrG5d4b+FiNxxGRwzJy0d1eezkLTnpZyzGc8vzzOwEtdYw4CMIa3ijhxa8Bc+uzbjB0z9rPjuHKJfJv9j59zn4pDQhcuh8EoUdhQfpv3/uVzZeU/dreh+3Kk04FxvuztGqo=----ATTACHMENT:----MjcyMDczOTQxNDc1OTY5IDMyNTI0NjAwNzU2MTcxNDcgMjg2Nzg4NzA4NjMyMTc0NQ==