|
array_findReturns the first element satisfying a callback function 説明
mixed array_find(array
$array , callable $callback )
array_find returns the value of the first element of an
array for which the given パラメータ
戻り値
The function returns the value of the first element for which the
例例1 array_find example
上の例の出力は以下となります。 string(5) "goose" NULL string(3) "cow" string(3) "dog" 参考
|