PHP multidimensional array search by value

前端 未结 23 3238
情歌与酒
情歌与酒 2020-11-21 04:45

I have an array where I want to search the uid and get the key of the array.

Examples

Assume we have the following 2-dimensional array:

<
23条回答
  •  执念已碎
    2020-11-21 05:35

    In later versions of PHP (>= 5.5.0) you can use this one-liner:

    $key = array_search('100', array_column($userdb, 'uid'));
    

提交回复
热议问题