![]() |
VOOZH | about |
class ArrayHash extends stdClass implements ArrayAccess, Countable, IteratorAggregate
Array-like object with property access.
No description
No description
Replaces or appends an item.
Returns an item.
Determines whether an item exists.
Removes the element from this list.
static ArrayHash
from(array $array, bool $recursive = true)
Transforms array to ArrayHash.
int
count()
No description
| int |
void
offsetSet(array-key $key, T $value)
Replaces or appends an item.
| array-key | $key |
| T | $value |
| void |
mixed
offsetGet(array-key $key)
Returns an item.
| array-key | $key |
| mixed |
bool
offsetExists(array-key $key)
Determines whether an item exists.
| array-key | $key |
| bool |
void
offsetUnset(array-key $key)
Removes the element from this list.
| array-key | $key |
| void |