$array
$array : array
Array manipulated by ArrayClass
Class ArrayClass
Easy array manipulation class
keys() : Array|\ArrayClass
Return all the keys of an array.
Due to limitations the additional parameters of array_keys are not supported.
values() : Array|\ArrayClass
Return all the values of an array
each() : Array|\ArrayClass
Return the current key and value pair from an array and advance the array cursor
clear() : Array|\ArrayClass
Remove all elements from the array
filter(Callable $callback = NULL) : Array|\ArrayClass
Filters elements of an array using a callback function
Callable | $callback | If this returns true for a value, the value is in the result array. |