當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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


Ds \ Set::intersect()函數是PHP中的一個內置函數,用於創建包含兩個集合的交集的新集合。

用法:

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

參數:此參數保存包含set元素的set。


返回值:此函數返回當前設置與其他設置的交集。

以下示例程序旨在說明PHP中的Ds \ Set::intersect()函數:

程序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 Intersection of two set 
echo("Intersection of both set is:\n");  
   
print_r($a->intersect($b)); 
   
?>
輸出:
Intersection of both set is:
Ds\Set Object
(
    [0] => 2
    [1] => 6
)

程序2:

<?php  
   
// Declare a new set 
$a = new \Ds\Set([2, 3, 6, 7, 8]);  
   
// Declare another set 
$b = new \Ds\Set([2, 3, 5, 8, 9, 10]);  
   
// Print the Intersection of both set 
echo("Intersection of both set is:\n");  
   
var_dump($a->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



相關用法


注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | Ds\Set intersect() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。