-
Notifications
You must be signed in to change notification settings - Fork 0
Arrject
It may be not common for everyone but for some of us, where we faced that we need an array to be used as object or vice versa. Obviously for different scenario. Also there is some use cases where a method only available to object or another method available to only array.
Simply define a variable like
$myVariable = new Arrject($myVariable);
And you are good to go!
All the methods implemented by ArrayAccess, Iterator, Countable, JsonSerializable and some additional methods to satisfy & provide several other functionality (overload, loop ability)!
Additionally, you will also get,
getIterator()
: get ArrayIterator instance,
merge(Arrject|Belt|array $data)
: Merge more data into existing,
filter(callable $callback)
: remove data from existing collection with given callback,
map(callable $callback)
: map data by callback
getArrayableItems(mixed $items)
: get array from other convertibles (JsonSerializable, Traversable, ...)