SessionSection
class SessionSection implements IteratorAggregate, ArrayAccess
Session section.
Properties
bool | $warnOnUndefined |
Methods
Returns an iterator over all section variables.
Sets a variable in this session section.
Gets a variable from this session section.
Removes a variable or whole section.
Sets a variable in this session section.
Gets a variable from this session section.
Determines whether a variable in this session section is set.
Unsets a variable in this session section.
Sets a variable in this session section.
No description
Determines whether a variable in this session section is set.
Unsets a variable in this session section.
Sets the expiration of the section or specific variables.
Removes the expiration from the section or specific variables.
Details
at line 35
__construct(Session $session, string $name)
Do not call directly. Use Session::getSection().
at line 45
Iterator
getIterator()
Returns an iterator over all section variables.
at line 56
void
set(string $name, mixed $value, string $expiration = null)
Sets a variable in this session section.
at line 72
mixed
get(string $name)
Gets a variable from this session section.
at line 86
void
remove(string|string[]|null $name = null)
Removes a variable or whole section.
at line 107
void
__set(string $name, $value)
Sets a variable in this session section.
at line 118
mixed
__get(string $name)
Gets a variable from this session section.
at line 133
bool
__isset(string $name)
Determines whether a variable in this session section is set.
at line 143
void
__unset(string $name)
Unsets a variable in this session section.
at line 152
void
offsetSet($name, $value)
Sets a variable in this session section.
at line 158
offsetGet($name)
No description
at line 172
bool
offsetExists($name)
Determines whether a variable in this session section is set.
at line 181
void
offsetUnset($name)
Unsets a variable in this session section.
at line 193
SessionSection
setExpiration(?string $time, string|string[]|null $variables = null)
Sets the expiration of the section or specific variables.
at line 219
void
removeExpiration(string|string[]|null $variables = null)
Removes the expiration from the section or specific variables.
Traits
Strict class for better experience.