标签: php arrays
我有两个数组:
1)
Array ( [0] => 162 [1] => 163 [2] => 98 [3] => 13 )
2)
Array ( [0] => 22 [1] => 45 [2] => 163 [3] => 80 )
我想找到这两个数组中哪些值相同:
这个例子中的$ thesame = 163
感谢。
答案 0 :(得分:4)
试试array_intersect() ...
array_intersect()
http://uk3.php.net/manual/en/function.array-intersect.php