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


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


Ds \ Set::diff()函数是PHP中的内置函数,用于创建一个集合,该集合包含第一个集合中第二个集合中不存在的元素。

用法:

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

参数:它用于保存集合,该值需要排除。


返回值:它返回一个新集合,其中包含第二集合中不存在的第一集合的元素。

以下示例程序旨在说明PHP中的Ds \ Set::diff()函数:

程序1:

<?php  
   
// Declare a new set 
$a = new \Ds\Set([2, 3, 6]);  
   
// Declare another new set 
$b = new \Ds\Set([2, 4, 6, 7]);  
   
// Print the diff of set 
echo("Difference of set1 and set2:\n");  
   
print_r($a->diff($b)); 
   
?>
输出:
Difference of set1 and set2:
Ds\Set Object
(
    [0] => 3
)

程序2:

<?php  
   
// Declare a new set 
$a = new \Ds\Set([2, 3, 6, 7, 8]);  
   
// Declare another new set 
$b = new \Ds\Set([2, 3, 5, 8, 9, 10]);  
   
// Print the diff of set 
echo("Difference of set1 and set2:\n");  
   
var_dump($a->diff($b)); 
   
?>
输出:
Difference of set1 and set2:
object(Ds\Set)#3 (2) {
  [0]=>
  int(6)
  [1]=>
  int(7)
}

参考: https://www.php.net/manual/en/ds-set.diff.php



相关用法


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