Method |
Description |
|
inArray ( mixed $value, boolean $strict = false ) : boolean | key |
Search the array for the given $value. |
|
keyExists ( string | StringObject $key, mixed $default = false ) : boolean | mixed |
Checks if $key exists in current array as index. If it exists, true is returned. |
|
keyExistsNested ( string | StringObject $key, mixed $default = false ) : boolean | mixed |
Checks if $key exists in current array as index. If it exists, true is returned. |
|
keysExist ( array $keys = [] ) : boolean |
Check if all given keys exist in the array |
|