|
array_find_keyReturns the key of the first element satisfying a callback function Description
mixed array_find_key(array
$array , callable $callback )
array_find_key returns the key of the first element of an
array for which the given Parameters
Return Values
The function returns the key of the first element for which the
ExamplesExample #1 array_find_key example
The above example will output: string(1) "e" NULL string(1) "c" string(1) "a" See Also
|