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
相關用法
- PHP Ds\Map diff()用法及代碼示例
- PHP DateTime diff()用法及代碼示例
- PHP abs()用法及代碼示例
- PHP cos( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP sin( )用法及代碼示例
- d3.js d3.set.add()用法及代碼示例
- p5.js int()用法及代碼示例
- PHP tan( )用法及代碼示例
- CSS rgb()用法及代碼示例
- PHP pow( )用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | Ds\Set diff() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。