PHP | Ds\Set xor()函数
Ds\Set::xor()函数是PHP中的一个内置函数,用于创建一个新集合,该集合包含第一个集合或第二个集合中的值,但不能同时包含两者。
句法:
Ds\Set public Ds\Set::xor ( Ds\Set $set )
参数:此函数接受一个参数$set ,用于保存一组值。
返回值:用于返回一个集合,该集合包含当前集合与另一个集合的异或。
下面的程序说明了PHP中的Ds\Set::xor()函数:
方案一:
xor($b));
?>
输出:
xor of both set is:
Ds\Set Object
(
[0] => 1
[1] => 5
[2] => 2
[3] => 6
)
方案二:
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