class AttributeBag implements AttributeBagInterface, IteratorAggregate, Countable
This class relates to session attribute storage.
protected | $attributes |
__construct(string $storageKey = '_sf2_attributes') | ||
string | getName() Gets this bag's name. | |
setName($name) | ||
initialize(array $attributes) Initializes the Bag. | ||
string | getStorageKey() Gets the storage key for this bag. | |
bool | has(string $name) Checks if an attribute is defined. | |
mixed | get(string $name, mixed $default = null) Returns an attribute. | |
set(string $name, mixed $value) Sets an attribute. | ||
array | all() Returns attributes. | |
replace(array $attributes) Sets attributes. | ||
mixed | remove(string $name) Removes an attribute. | |
mixed | clear() Clears out data from bag. | |
ArrayIterator | getIterator() Returns an iterator for attributes. | |
int | count() Returns the number of attributes. |
string | $storageKey | The key used to store attributes in the session |
Gets this bag's name.
string |
$name |
Initializes the Bag.
array | $attributes |
Gets the storage key for this bag.
string |
Checks if an attribute is defined.
string | $name | The attribute name |
bool | true if the attribute is defined, false otherwise |
Returns an attribute.
string | $name | The attribute name |
mixed | $default | The default value if not found |
mixed |
Sets an attribute.
string | $name | |
mixed | $value |
Returns attributes.
array | Attributes |
Sets attributes.
array | $attributes | Attributes |
Removes an attribute.
string | $name |
mixed | The removed value or null when it does not exist |
Clears out data from bag.
mixed | Whatever data was contained |
Returns an iterator for attributes.
ArrayIterator | An \ArrayIterator instance |
Returns the number of attributes.
int | The number of attributes |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/HttpFoundation/Session/Attribute/AttributeBag.html