SessionUpdateTimestampHandlerInterface::updateTimestamp

(PHP 7, PHP 8)

SessionUpdateTimestampHandlerInterface::updateTimestampAktualisiert den Zeitstempel

Beschreibung

public SessionUpdateTimestampHandlerInterface::updateTimestamp(string $id, string $data): bool

Aktualisiert den Zeitstempel der letzten Änderung der Session. Diese Funktion wird automatisch ausgeführt, wenn eine Session aktualisiert wird.

Parameter-Liste

id

Die Session-ID

data

Die Session-Daten

Rückgabewerte

Gibt true zurück, wenn der Zeitstempel aktualisiert wurde, andernfalls false. Zu beachten ist, dass dieser Wert intern an PHP zur Verarbeitung zurückgegeben wird.

add a note add a note

User Contributed Notes 2 notes

up
2
ohcc at 163 dot com
3 years ago
When session.lazy_write is enabled, which is the default behaviour, session data will NOT be UPDATED if it remains unchanged, in this way the WRITE method of the session handler will not be called at all.

If your session handler storages session data into files, UpdateTimestamp is used to update the "last modified time" of the session file, if your session handler storages session data into a database, UpdateTimestamp is used to update the table field that storages the last modified time of the session registry.
up
1
ohcc at 163 dot com
4 years ago
'validateId' is called after 'open' and before 'read' to validate the session id provided by the client, as 'open' -> 'validateId' -> 'read' -> 'write' -> 'close' are called in sequence.

If 'validateId' returns false, a new session id will be generated, the session cookie will also be updated afterwards.
To Top