PHP | Ds\Set intersect()函数
Ds\Set::intersect()函数是PHP中的一个内置函数,用于创建一个包含两个集合交集的新集合。
句法:
Ds\Set public Ds\Set::intersect ( Ds\Set $set )
参数:此参数保存包含集合元素的集合。
返回值:该函数返回当前集合与其他集合的交集。
下面的程序说明了PHP中的Ds\Set::intersect()函数:
方案一:
intersect($b));
?>
输出:
Intersection of both set is:
Ds\Set Object
(
[0] => 2
[1] => 6
)
方案二:
intersect($b));
?>
输出:
Intersection of both set is:
object(Ds\Set)#3 (3) {
[0]=>
int(2)
[1]=>
int(3)
[2]=>
int(8)
}
参考: https://www. PHP.net/manual/en/ds-set.intersect。 PHP