php index of item

前端 未结 3 1992
闹比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:53

    You have to use array_search.

    Look here http://www.php.net/manual/en/function.array-search.php

提交回复
热议问题