php - find if an array contains an element

前端 未结 3 1171
情书的邮戳
情书的邮戳 2020-12-06 04:55

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:

3条回答
  •  有刺的猬
    2020-12-06 05:37

    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
    }
    

提交回复
热议问题