* @copyright walkor * @link http://www.workerman.net/ * @license http://www.opensource.org/licenses/mit-license.php MIT License */ namespace Workerman\Protocols\Http\Session; interface SessionHandlerInterface { /** * Close the session * @link http://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.0 */ public function close(); /** * Destroy a session * @link http://php.net/manual/en/sessionhandlerinterface.destroy.php * @param string $session_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.0 */ public function destroy($session_id); /** * 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($maxlifetime); /** * Initialize session * @link http://php.net/manual/en/sessionhandlerinterface.open.php * @param string $save_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.0 */ public function open($save_path, $name); /** * Read session data * @link http://php.net/manual/en/sessionhandlerinterface.read.php * @param string $session_id 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($session_id); /** * Write session data * @link http://php.net/manual/en/sessionhandlerinterface.write.php * @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

* 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($session_id, $session_data); /** * Update sesstion modify time. * * @see https://www.php.net/manual/en/class.sessionupdatetimestamphandlerinterface.php * * @param string $id Session id. * @param string $data Session Data. * * @return bool */ public function updateTimestamp($id, $data = ""); }