The SessionUpdateTimestampHandlerInterface interface

(PHP 7, PHP 8)

Introducción

SessionUpdateTimestampHandlerInterface is an interface which defines optional methods 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 can implement this interface.

Note that the callback methods of classes implementing this interface are designed to be called internally by PHP and are not meant to be called from user-space code.

Sinopsis de la Clase

interface SessionUpdateTimestampHandlerInterface {
/* Métodos */
public updateTimestamp(string $id, string $data): bool
public validateId(string $id): bool
}

Tabla de contenidos

add a note add a note

User Contributed Notes 1 note

up
2
Anonymous
4 years ago
There is a bit of documentation provided by Wu Xiancheng. See his comment in the SessionHandlerInterface section:
https://www.php.net/manual/en/class.sessionhandlerinterface.php#122032
To Top