PHP SessionHandlerInterface::gc 会话函数
-
定义和用法
SessionHandlerInterface::gc - 清理旧会话 -
版本支持
PHP4 PHP5 PHP7 不支持 v5.4.0+支持 支持 -
语法
SessionHandlerInterface::gc ( int $maxlifetime )
清理过期的会话。 由session_start() 根据session.gc_divisor,session.gc_probability和session.gc_maxlifetime设置调用。 -
参数
参数 必需的 描述 maxlifetime 是 在最近的maxlifetime秒内未更新的会话将被删除。 -
返回值
会话存储的返回值(通常成功返回 0,失败返回 1)。 -