|
ILIAS
release_8 Revision v8.24
|
Inheritance diagram for ILIAS\FileUpload\Collection\StringMap:
Collaboration diagram for ILIAS\FileUpload\Collection\StringMap:Public Member Functions | |
| put (string $key, string $value) | |
| Puts a new key value pair into the string array. More... | |
Public Member Functions inherited from ILIAS\FileUpload\Collection\ImmutableStringMap | |
| get (string $key) | |
| Returns the value of the key from the additional metadata. More... | |
| toArray () | |
| Returns all currently known entries. More... | |
| has (string $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 30 of file StringMap.php.
| ILIAS\FileUpload\Collection\StringMap::put | ( | string | $key, |
| string | $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.