123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php
- /**
- * This file is part of workerman.
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the MIT-LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @author walkor<walkor@workerman.net>
- * @copyright walkor<walkor@workerman.net>
- * @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 <p>
- * The return value (usually TRUE on success, FALSE on failure).
- * Note this value is returned internally to PHP for processing.
- * </p>
- * @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 <p>
- * The return value (usually TRUE on success, FALSE on failure).
- * Note this value is returned internally to PHP for processing.
- * </p>
- * @since 5.4.0
- */
- public function destroy($session_id);
- /**
- * Cleanup old sessions
- * @link http://php.net/manual/en/sessionhandlerinterface.gc.php
- * @param int $maxlifetime <p>
- * Sessions that have not updated for
- * the last maxlifetime seconds will be removed.
- * </p>
- * @return bool <p>
- * The return value (usually TRUE on success, FALSE on failure).
- * Note this value is returned internally to PHP for processing.
- * </p>
- * @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 <p>
- * The return value (usually TRUE on success, FALSE on failure).
- * Note this value is returned internally to PHP for processing.
- * </p>
- * @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 <p>
- * 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.
- * </p>
- * @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 <p>
- * 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.
- * </p>
- * @return bool <p>
- * The return value (usually TRUE on success, FALSE on failure).
- * Note this value is returned internally to PHP for processing.
- * </p>
- * @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 = "");
- }
|