PHP | Ds\Set diff()函数
Ds\Set::diff()函数是PHP中的一个内置函数,用于创建一个集合,其中包含第一个集合中不存在于第二个集合中的元素。
句法:
Ds\Set public Ds\Set::diff ( Ds\Set $set )
参数:用于保存集合,需要排除哪些值。
返回值:它返回一个新集合,其中包含第二个集合中不存在的第一个集合的元素。
下面的程序说明了PHP中的Ds\Set::diff()函数:
方案一:
diff($b));
?>
输出:
Difference of set1 and set2:
Ds\Set Object
(
[0] => 3
)
方案二:
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