hey guys
im having issue with array_search i need to get the $key if it exists in the array but im always gettin false but it exists because i tried in_array function and it returns true
$key = array_search($id, $arr_ids); gives me 0 all time.
but if i do if(in_array($id, $arr_ids)) echo "yes"; it prints out yes
i tried checking on identical types by using === also but no dice.
anyone run into this problem before?