|
ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
|
Inheritance diagram for ILIAS\FileUpload\Collection\StringMap:
Collaboration diagram for ILIAS\FileUpload\Collection\StringMap:Public Member Functions | |
| put ($key, $value) | |
| Puts a new key value pair into the string array. More... | |
Public Member Functions inherited from ILIAS\FileUpload\Collection\ImmutableStringMap | |
| get ($key) | |
| Returns the value of the key from the additional metadata. More... | |
| toArray () | |
| Returns all currently known entries. More... | |
| has ($key) | |
| Probe if the key is known and associated with a value. More... | |
Class StringMap.
This interface provides the standard interface for the mutable string map implementation. Maps in general are collections which map a key to value.
Definition at line 17 of file StringMap.php.
| ILIAS\FileUpload\Collection\StringMap::put | ( | $key, | |
| $value | |||
| ) |
Puts a new key value pair into the string array.
| string | $key | The key which should be put into the map. |
| string | $value | The value which should be associated with the given key. |
InvalidArgumentException Thrown if the key or value is not of the type string.
Implemented in ILIAS\FileUpload\Collection\EntryLockingStringMap.