$session->increment()
Increments one or multiple session values by a specified amount
$session->increment(string|array $key, int $by = 1, int|null $max = null): void
Parameters
Name | Type | Default | Description |
---|---|---|---|
$keyrequired | string orarray |
no default value | The key to increment or an array with multiple keys |
$by | int |
1
|
Increment by which amount? |
$max | int ornull |
null
|
Maximum amount (value is not incremented further) |