PHP | Ds\Set union()函数
Ds\Set::union()函数是PHP中的一个内置函数,用于创建一个包含两个集合并集的新集合。
句法:
Ds\Set public Ds\Set::union ( Ds\Set $set )
参数:此函数接受单个参数$set ,该参数包含要与当前实例组合的另一组实例。
返回值:它返回一个包含两个集合并集的集合。
下面的程序说明了PHP中的Ds\Set::union()函数:
方案一:
union($b));
?>
输出:
Union of both set is:
Ds\Set Object
(
[0] => 2
[1] => 3
[2] => 6
[3] => 4
[4] => 7
)
方案二:
union($b));
?>
输出:
Union of both set is:
object(Ds\Set)#3 (8) {
[0]=>
int(2)
[1]=>
int(3)
[2]=>
int(6)
[3]=>
int(7)
[4]=>
int(8)
[5]=>
int(5)
[6]=>
int(9)
[7]=>
int(10)
}
参考: https://www. PHP.net/manual/en/ds-set.union。 PHP