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.
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 the expiration of the section or specific variables.
Removes the expiration from the section or specific variables.
Details
at line 41
__construct(Session $session, string $name)
Do not call directly. Use Session::getSection().
at line 61
Iterator
getIterator()
Returns an iterator over all section variables.
at line 71
void
set(string $name, $value, string $expiration = null)
Sets a variable in this session section.
at line 83
mixed
get(string $name)
Gets a variable from this session section.
at line 94
void
remove(string|array|null $name = null)
Removes a variable or whole section.
at line 110
void
__set(string $name, $value)
Sets a variable in this session section.
at line 121
mixed
__get(string $name)
Gets a variable from this session section.
at line 135
bool
__isset(string $name)
Determines whether a variable in this session section is set.
at line 147
void
__unset(string $name)
Unsets a variable in this session section.
at line 157
void
offsetSet($name, $value)
Sets a variable in this session section.
at line 167
mixed
offsetGet($name)
Gets a variable from this session section.
at line 176
bool
offsetExists($name)
Determines whether a variable in this session section is set.
at line 185
void
offsetUnset($name)
Unsets a variable in this session section.
at line 197
SessionSection
setExpiration(?string $time, string|string[] $variables = null)
Sets the expiration of the section or specific variables.
at line 222
void
removeExpiration(string|string[] $variables = null)
Removes the expiration from the section or specific variables.