php语法如何查询两个数组的交集元素

2024年05月27日 建站教程

如何利用php语法获取两个数组的交集元素,生成一个新的数组?下面web建站小编给大家简单介绍一下具体实现代码!

$animalA = array("cat", "dog", "pig", "panda");
$animalB = array("dog", "panda", "fish", "snake");
$commonAnimal = array_intersect($animalA, $animalB);
print_r($commonAnimal);

//输出结果:
Array (
  [1] => dog
  [3] => panda
)

本文链接:http://so.lmcjl.com/news/5424/

展开阅读全文
相关内容