Description
mixed
array_search ( mixed needle, array haystack [, bool strict])
Searches haystack for
needle and returns the key if it is found in
the array, FALSE otherwise.
Notã:
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.
| Avertisment |
Această funcție
e posibil să returneze FALSE, dar poate returna, de asemenea,
o valoare ce poate fi evaluată ca fiind FALSE, cum ar fi 0
sau "". Citește despre tipul
boolean pentru mai multe informații. Te rog folosește operatorul ===
pentru a testa valoarea returnată de această funcție.
|
See also array_keys() and in_array().