find()
The find() method find the value of the first element that pass function.
Example.php
Syntax
Parameter
$callback
A function to execute on each value in the array, taking 3 arguments:
$value
The current element being processed in the array.$key
The index of the current element being processed in the array.$array
The arrayevery
was called upon.
Return value
The value of the first element in the array that pass function. Otherwise,
NULL
is returned.
Prefixing
References
Last updated