function find_customer_mobile($customers, $mobile) { foreach($customers as $index => $cust) { if($cust['mobile'] == $mobile) return $index; } return FALSE; }