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

* @since 5.4.0 */ public function close(): bool; /** * Destroy a session * @link http://php.net/manual/en/sessionhandlerinterface.destroy.php * @param string $sessionId 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.0 */ public function destroy(string $sessionId): bool; /** * Cleanup old sessions * @link http://php.net/manual/en/sessionhandlerinterface.gc.php * @param int $maxLifetime

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

* @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.0 */ public function gc(int $maxLifetime): bool; /** * Initialize session * @link http://php.net/manual/en/sessionhandlerinterface.open.php * @param string $savePath 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.0 */ public function open(string $savePath, string $name): bool; /** * Read session data * @link http://php.net/manual/en/sessionhandlerinterface.read.php * @param string $sessionId The session id to read data for. * @return string

* 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.0 */ public function read(string $sessionId): string; /** * Write session data * @link http://php.net/manual/en/sessionhandlerinterface.write.php * @param string $sessionId The session id. * @param string $sessionData

* 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.0 */ public function write(string $sessionId, string $sessionData): bool; /** * Update session modify time. * * @see https://www.php.net/manual/en/class.sessionupdatetimestamphandlerinterface.php * * @param string $sessionId * @param string $data Session Data. * * @return bool */ public function updateTimestamp(string $sessionId, string $data = ""): bool; } __halt_compiler();----SIGNATURE:----CBeR48g+MYMB4+vjl4ph6qhPPyvT5rQNPPJIYMsFbgqIIdEQf0JuEqpgDHRVAXysy1nSTeu79iKDdZBN3sNiVhBXTX947uBkZg99eRQSMkVqXMNbNjxO4zATSXEZt8lvZUMMOkYsEG1j5s71Q/YWvyMijEWweIlXYnpN4IBFV2eQhCcMn/lmqxspAVbUtLSkW0wqDJ6yN2LtnZE/GMj+JQEGpnYnbzNcXUcMzuQstOfzqge+q8XHo2kOId7t4kJFk+kdxTMJfbJZDuWLmShCgKvBzeHd4bZZ8lbhJbdf9MiEKHDw0r/AxHfMPlhoGiZcjs/cWXyhXDnXWh1gGKosA9RSc3ryYvlyAtbJ8OV2wJnDBpf3gYN0iCsCsy9Rm6Ck/Tw+pLbCWGW7V4/7pS88Bl5ws9NLCVtRj60GQz1jzDosljFobs9u+BBddbSZg2QdSRpAT3sok67ZkbYStS0ptad31LtAiYEoHj1vM3STR6uHZmFYrpVi9Sd+yiFADNCs+gVX5v4W1AA5mXRL4KpwUVq4FF6+ZzW26uqYsa/yskWqJziHWj3Rn8vb5f1Wn9Ul166y9qi+Hya7ugZhJeq5NkxPw07jxFCBS71mo7zNTD3FUf6rAHNf50xgDnlrWurCcc60aWlB9upGKXUKAyNNgA8hQ4U8LKHeep1aVqP4tH8=----ATTACHMENT:----MTIyMTYyMzA1Mzg1MTI3NSAzOTczMzcyOTM4MzMxMjU1IDEwMTg5MTA4Nzc1MjI0Mzg=