19

I have an array with just a list of ids, like so:

$my_array = array(
 12, 17, 99, 23
);

Now I know I could probably do something like:

function in_array($haystack = array(), $needle = NULL)
{
 foreach($haystack as $id)
 {
  if ($id == $needle)
  {return TRUE;}
  else
  {return FALSE;}
 }
}

but it seems like there's probably already a function built. What could I use?

Matthew
  • 15,282
  • 27
  • 88
  • 123

3 Answers3

24

No need to create one, it is already there co-incidentally with the same name you are using: in_array too.

Example:

if (in_array('foo', $array)){
  // foo is in the array
}
Sarfraz
  • 377,238
  • 77
  • 533
  • 578
5

It's called in_array() xD

Joseph Mansfield
  • 108,238
  • 20
  • 242
  • 324
2

This might be a trick question. Anyway but how about in_array?

loevborg
  • 1,774
  • 13
  • 18