Arrays
class Arrays
Array tools library.
Methods
Returns item from array. If it does not exist, it throws an exception, unless a default value is set.
Returns reference to array item. If the index does not exist, new one is created with value null.
Recursively merges two fields. It is useful, for example, for merging tree structures. It behaves as the + operator for array, ie. it adds a key/value pair from the second array to the first one and retains the value from the first array in the case of a key collision.
Returns zero-indexed position of given array key. Returns null if key is not found.
Tests an array for the presence of value.
Returns the first item from the array or null if array is empty.
Returns the last item from the array or null if array is empty.
Inserts the contents of the $inserted array into the $array immediately after the $key.
Inserts the contents of the $inserted array into the $array before the $key.
Renames key in array.
Returns only those array items, which matches a regular expression $pattern.
Transforms multidimensional array to flat array.
Checks if the array is indexed in ascending order of numeric keys from zero, a.k.a list.
Reformats table to associative tree. Path looks like 'field|field[]field->field=field'.
Normalizes array to associative array. Replace numeric keys with their values, the new value will be $filling.
Returns and removes the value of an item from an array. If it does not exist, it throws an exception, or returns $default, if provided.
Tests whether at least one element in the array passes the test implemented by the
provided callback with signature function ($value, $key, array $array): bool
.
Tests whether all elements in the array pass the test implemented by the provided function,
which has the signature function ($value, $key, array $array): bool
.
Calls $callback on all elements in the array and returns the array of return values.
Invokes all callbacks and returns array of results.
Invokes method on every object in an array and returns array of results.
Copies the elements of the $array array to the $object object and then returns it.
Converts value to array key.
Returns copy of the $array where every item is converted to string and prefixed by $prefix and suffixed by $suffix.
Details
at line 32
static T
get(array $array, string|int|array-key[] $key, T $default = null)
Returns item from array. If it does not exist, it throws an exception, unless a default value is set.
at line 56
static T
getRef(array $array, string|int|array-key[] $key)
Returns reference to array item. If the index does not exist, new one is created with value null.
at line 79
static array
mergeTree(array $array1, array $array2)
Recursively merges two fields. It is useful, for example, for merging tree structures. It behaves as the + operator for array, ie. it adds a key/value pair from the second array to the first one and retains the value from the first array in the case of a key collision.
at line 96
static int|null
getKeyOffset(array $array, array-key $key)
Returns zero-indexed position of given array key. Returns null if key is not found.
at line 105
static int|null
searchKey(array $array, $key)
deprecated
deprecated
No description
at line 115
static bool
contains(array $array, mixed $value)
Tests an array for the presence of value.
at line 127
static T
first(array $array)
Returns the first item from the array or null if array is empty.
at line 139
static T
last(array $array)
Returns the last item from the array or null if array is empty.
at line 150
static void
insertBefore(array $array, string|int|null $key, array $inserted)
Inserts the contents of the $inserted array into the $array immediately after the $key.
If $key is null (or does not exist), it is inserted at the beginning.
at line 164
static void
insertAfter(array $array, string|int|null $key, array $inserted)
Inserts the contents of the $inserted array into the $array before the $key.
If $key is null (or does not exist), it is inserted at the end.
at line 180
static bool
renameKey(array $array, array-key $oldKey, array-key $newKey)
Renames key in array.
at line 200
static array
grep(array $array, string $pattern, int $flags = 0)
Returns only those array items, which matches a regular expression $pattern.
at line 209
static array
flatten(array $array, bool $preserveKeys = false)
Transforms multidimensional array to flat array.
at line 224
static bool
isList(mixed $value)
Checks if the array is indexed in ascending order of numeric keys from zero, a.k.a list.
at line 235
static array|stdClass
associate(array $array, string|string[] $path)
Reformats table to associative tree. Path looks like 'field|field[]field->field=field'.
at line 290
static array
normalize(array $array, mixed $filling = null)
Normalizes array to associative array. Replace numeric keys with their values, the new value will be $filling.
at line 310
static T
pick(array $array, array-key $key, T $default = null)
Returns and removes the value of an item from an array. If it does not exist, it throws an exception, or returns $default, if provided.
at line 330
static bool
some(iterable $array, callable $callback)
Tests whether at least one element in the array passes the test implemented by the
provided callback with signature function ($value, $key, array $array): bool
.
at line 345
static bool
every(iterable $array, callable $callback)
Tests whether all elements in the array pass the test implemented by the provided function,
which has the signature function ($value, $key, array $array): bool
.
at line 360
static array
map(iterable $array, callable $callback)
Calls $callback on all elements in the array and returns the array of return values.
The callback has the signature function ($value, $key, array $array): bool
.
at line 374
static array
invoke(iterable $callbacks, ...$args)
Invokes all callbacks and returns array of results.
at line 388
static array
invokeMethod(iterable $objects, string $method, ...$args)
Invokes method on every object in an array and returns array of results.
at line 404
static T
toObject(iterable $array, T $object)
Copies the elements of the $array array to the $object object and then returns it.
at line 418
static array-key
toKey(mixed $value)
Converts value to array key.
at line 430
static array
wrap(array $array, string $prefix = '', string $suffix = '')
Returns copy of the $array where every item is converted to string and prefixed by $prefix and suffixed by $suffix.
Traits
Static class.