Метод |
Описание |
|
isAssociative ( array $array ) : boolean |
Returns whether the given item is an associative array. |
|
isIndexed ( array $array ) : boolean |
Returns whether the given item is an indexed array - zero indexed and sequential. |
|
isIndexedArray ( array $arr ) : boolean |
Use {@see isIndexed} or {@see isAssociative} instead. |
|
makeValuePairs ( array $array, string $key, string $value ) : array |
Make a simple array consisting of key=>value pairs, that can be used
in select-boxes in forms. |
|
mergeRecursiveDistinct ( array &$array1, array &$array2 ) : array |
This is the same as {@see array_replace_recursive}. |
|
replaceRecursive ( array $array1, array $array2 ) : array |
Replaces values from second array into first array recursively. |
|