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


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


Ds \ Set::xor()函數是PHP中的內置函數,用於創建一個新集合,該集合包含第一組或第二組中的值,但不能同時包含兩者。

用法:

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

參數:該函數接受單個參數$set,該參數用於保存值集。


返回值:它用於返回一個集合,該集合包含當前集合與另一個集合的異或。

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

程序1:

<?php  
  
// Declare a new set 
$a = new \Ds\Set([1, 3, 5]);  
  
// Declare a new set 
$b = new \Ds\Set([2, 3, 6]);  
  
// Print the xor of both set 
echo("xor of both set is:\n");  
  
print_r($a->xor($b)); 
  
?>
輸出:
xor of both set is:
Ds\Set Object
(
    [0] => 1
    [1] => 5
    [2] => 2
    [3] => 6
)

程序2:

<?php  
  
// Declare a new set 
$a = new \Ds\Set([2, 3, 6, 7, 8]);  
  
// Declare a new set 
$b = new \Ds\Set([2, 3, 5, 8, 9, 10]);  
  
// Print the xor of both set 
echo("xor of both set is:\n");  
  
var_dump($a->xor($b)); 
  
?>
輸出:
xor of both set is:
object(Ds\Set)#3 (5) {
  [0]=>
  int(6)
  [1]=>
  int(7)
  [2]=>
  int(5)
  [3]=>
  int(9)
  [4]=>
  int(10)
}

參考: https://www.php.net/manual/en/ds-set.xor.php



相關用法


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