$a = [1,2,3,4];$b = [2,4,5,6];1.交集:array_intersect($a, $b ; // 得到结果[2,4]2.差集: array_diff($a, $b ; // 得到结果[1,3]把稳...
没有更多内容