当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds Set intersect()用法及代码示例



Ds\Set::intersect() 函数可以通过将值与另一个集合相交来创建一个新集合。

用法

public Ds\Set Ds\Set::intersect( Ds\Set $set )

Ds\Set::intersect() 函数可以使用当前实例和另一个集合的共同值创建一个新集合。这意味着返回当前实例的副本,其中删除了不在其他集合中的所有值。

Ds\Set::intersect() 函数可以返回当前实例与另一个集合的交集。

例子1

<?php  
   $set1 = new \Ds\Set([1, 4, 7]);  
   $set2 = new \Ds\Set([1, 5, 6, 7]);  
   
   echo("The intersection of both set:\n");  
   print_r($set1->intersect($set2)); 
?>

例子2

<?php  
   $set1 = new \Ds\Set([1, 4, 5, 7, 9]);  
   $set2 = new \Ds\Set([2, 4, 6, 8, 10]);  
      
   echo("The intersection of both set:\n");  
   var_dump($set1->intersect($set2)); 
?>

相关用法


注:本文由纯净天空筛选整理自 PHP - Ds Set intersect() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。