web\Session $timeout

$timeout public property The number of seconds after which data will be seen as 'garbage' and cleaned up. The default value is 1440 seconds (or the value of "session.gc_maxlifetime" set in php.ini). public integer getTimeout ( )public void setTimeout ( $value )

web\Session $savePath

$savePath public property The current session save path, defaults to '/tmp'. public string getSavePath ( )public void setSavePath ( $value )

web\Session $iterator

$iterator public read-only property An iterator for traversing the session variables. public yii\web\SessionIterator getIterator ( )

web\Session $isActive

$isActive public read-only property Whether the session has started public boolean getIsActive ( )

web\Session $hasSessionId

$hasSessionId public property Whether the current request has sent the session ID. public boolean getHasSessionId ( )public void setHasSessionId ( $value )

web\Session $id

$id public property The current session ID public string getId ( )public void setId ( $value )

web\Session $flashParam

$flashParam public property The name of the session variable that stores the flash message data. public string $flashParam = '__flash'

web\Session $gCProbability

$gCProbability public property The probability (percentage) that the GC (garbage collection) process is started on every session initialization, defaults to 1 meaning 1% chance. public float getGCProbability ( )public void setGCProbability ( $value )

web\Session $handler

$handler public property An object implementing the SessionHandlerInterface or a configuration array. If set, will be used to provide persistency instead of build-in methods. public SessionHandlerInterface|array $handler = null

web\Session $allFlashes

$allFlashes public read-only property Flash messages (key => message or key => [message1, message2]). public array getAllFlashes ( $delete = false )