php index of item

前端 未结 3 1990
闹比i
闹比i 2020-12-15 15:02

I have an array that looks like this:

$fruit = array(\'apple\',\'orange\',\'grape\');

How can I find the index of a specific item, in the a

3条回答
  •  情深已故
    2020-12-15 15:58

    have in mind that, if you think that your search item can be found more than once, you should use array_keys() because it will return keys for all matching values, not only the first matching key as array_search().

    Regards.

提交回复
热议问题