Skip to content

Kirby 3.5.7.1

$sessions->create()

Creates a new empty session

$sessions->create(array $options = [ ]): Kirby\Session\Session

Parameters

Name Type Default Description
$options array [ ] Optional additional options:
- mode: Token transmission mode (cookie or manual); defaults to default mode of the Sessions instance
- startTime: Time the session starts being valid (date string or timestamp); defaults to now
- expiryTime: Time the session expires (date string or timestamp); defaults to + 2 hours
- timeout: Activity timeout in seconds (integer or false for none); defaults to 1800 (half an hour)
- renewable: Should it be possible to extend the expiry date?; defaults to true

Return type

Kirby\Session\Session

Parent class

Kirby\Session\Sessions