Lucee Function Reference
arrayfindall()
These functions searches the array for the specified object and return the positions of all occurrence of this values.
Beispiel
arrayfindall(array array,any value_or_closure):array
Kategorie
array,find
Argumente
Die Argumente für diese Funktion sind fest vorgegeben. Ausser den nachfolgenden Argumenten dürfen keine weiteren verwendet werden.
Name | Typ | Required | Beschreibung |
---|---|---|---|
array | array | Yes | The array to search in |
value_or_closure | any | Yes | The value to find or a closure/function that gets every value of the array as input and returns true if the given value is right. |