chen dot avinadav at vbulletin dot com
13-Apr-2002 05:15
> for those with php <= 4.04, copy this function in the source or
> your code.
While that function is correct, it will always return the first key in the array its value matches needle. (Unlike the original function, which returns the last key.)
The correct function would look more like this:
function array_search($needle, $haystack) {
$match = false;
foreach ($haystack as $key => $value) {
if ($key == $needle) {
$match = $key;
}
}