Arr::has(array $array, mixed $keys): bool
$array = [
'foo' => [
1,
'test' => [
'abc' => 2,
'def'
],
[
'bar' => true
],
],
];
Arr::has($array, 'foo') -> true
Arr::has($array, 'foo.0') -> true
Arr::has($array, 'foo.test') -> true
Arr::has($array, 'foo.test.abc') -> true
Arr::has($array, ['foo', 1, 'bar']) -> true
Arr::has($array, 'test') -> false
Arr::has($array, []) -> false
Arr::has($array, 'not.existing.key') -> false