|
array_find_keyReturns the key of the first element satisfying a callback function 説明
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 パラメータ
戻り値
The function returns the key of the first element for which the
例例1 array_find_key example
上の例の出力は以下となります。 string(1) "e" NULL string(1) "c" string(1) "a" 参考
|