FileSessionHandler
class FileSessionHandler implements SessionHandlerInterface, SessionUpdateTimestampHandlerInterface (View source)
Session save handler that stores session data in the filesystem as defined by session.save_path
ini configuration.
Similar to PHP's default filesystem session handler, except it doesn't lock the session file meaning sessions are non-blocking.
Constants
SESSION_FILE_PREFIX |
|
Methods
Details
bool
close()
No description
bool
destroy(string $id)
No description
int|false
gc(int $max_lifetime)
No description
bool
open(string $path, string $name)
No description
string|false
read(string $id)
No description
bool
write(string $id, string $data)
No description
bool
validateId(string $id)
No description
bool
updateTimestamp(string $id, string $data)
No description