检查一个数组的元素是否在PHP中的另一个数组中

我在PHP中有两个数组,如下所示:

人:

Array

(

[0] => 3

[1] => 20

)

通缉犯:

Array

(

[0] => 2

[1] => 4

[2] => 8

[3] => 11

[4] => 12

[5] => 13

[6] => 14

[7] => 15

[8] => 16

[9] => 17

[10] => 18

[11] => 19

[12] => 20

)

如何检查是否 的的 人们 元素是在 通缉犯 阵列?

在此示例中,它应该返回,true因为20通缉犯中

回答:

您可以使用array_intersect()

$result = !empty(array_intersect($people, $criminals));

以上是 检查一个数组的元素是否在PHP中的另一个数组中 的全部内容, 来源链接: utcz.com/qa/426435.html

回到顶部