SessionHandlerInterface::gc

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

SessionHandlerInterface::gcLimpieza de sesiones antiguas

Descripción

public SessionHandlerInterface::gc(int $max_lifetime): int|false

Limpia las sesiones expiradas. Llamado por session_start(), basado en las configuraciones session.gc_divisor, session.gc_probability y session.gc_maxlifetime.

Parámetros

max_lifetime

Las sesiones que no han sido actualizadas desde los últimos max_lifetime segundos serán eliminadas.

Valores devueltos

Returns the number of deleted sessions on success, o false en caso de error. Note this value is returned internally to PHP for processing.

Historial de cambios

Versión Descripción
7.1.0 Prior to this version, the function returned true on success.
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top