// set your magic value if it might change later...
$magic_value = "jake";
// always a good idea to reset the array
reset($my_array);
// loop through the array
while(list($k,$v)=each($my_array)) {
if($v == $magic_value) {
// do what ever when you've found a matching value
}
}