如何在php中比较两个数组的值

时间:2015-07-14 11:26:44

标签: php arrays algorithm function

我想在另一个数组中比较一个数组值。以下是两个不同的数组。

$a = Array (9,39,40,41);

$b = Array ( [0] => 38 [1] => 1 [2] => 36 [3] => 37 [4] => 9 [5] => 2 );

我想检查$a中是否有$b值。如果$a中存在$b所有值,则条件应为真。

if($a in $b ){ echo 'true'; }

1 个答案:

答案 0 :(得分:0)

您可以像这样使用array_intersect

$intersection = array_intersect($a, $b);
$ok = (count(($intersection) === count($a));