$arr = array('lang1' => 'php','lang2' => 'java','lang3' => 'python'); if ( in_array( 'java', $arr ) ) { echo 'exists'; }else{ echo 'not exists'; }