<?php
$test = array(
  1 => 'hi',
  2 => 12,
  3 => 'sandwich',
  4 => 41,
  'bye' => 61
);

var_dump(in_array(12, $test), in_array(4, $test), in_array('bye', $test), in_array('hi', $test));