title | tags |
---|---|
any
|
array,beginner
|
Returns true
if the provided function returns true
for at least one element of an array, false
otherwise.
- Use
array_filter()
andcount()
to check if$func
returnstrue
for any of the elements in$items
.
function any($items, $func)
{
return count(array_filter($items, $func)) > 0;
}
any([1, 2, 3, 4], function ($item) {
return $item < 2;
}); // true
Tags: PHP Any(), PHP arrays, array_filter, count, All Items from Array, Iterate Array, Search Array,