(PHP 4 >= 4.0.5, PHP 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.
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().