(PHP 4 >= 4.0.5)
array_search -- Searches the array for a given value and returns the corresponding key if successfulSearches haystack for needle and returns the key if it is found in the array, FALSE otherwise.
Замечание: Prior to PHP 4.2.0, array_search() returns NULL on failure instead of FALSE.
If the optional third parameter strict is set to TRUE then the array_search() will also check the types of the needle in the haystack.
Внимание |
Эта функция может возвращать как логическое значение FALSE, так и не относящееся к логическому типу значение, которое может являться значением FALSE, например, 0 или "". За более подробной информации обратитесь к разделу Логические типы. Используйте оператор === для проверки значения, возвращаемого этой функцией. |
See also array_keys() and in_array().
Пред. | Начало | След. |
array_reverse | Уровень выше | array_shift |