在 PHP 中,可以使用 array_merge()
函數和 array_unique()
函數來實現集合(數組)的并集運算。以下是一個示例:
<?php
// 定義兩個數組作為集合
$set1 = array("a", "b", "c", "d");
$set2 = array("c", "d", "e", "f");
// 使用 array_merge() 函數合并兩個數組
$unionSet = array_merge($set1, $set2);
// 使用 array_unique() 函數去除重復元素
$result = array_unique($unionSet);
// 輸出并集結果
print_r($result);
?>
運行上述代碼,將輸出以下結果:
Array
(
[0] => a
[1] => b
[2] => c
[3] => d
[4] => e
[5] => f
)
這樣,你就得到了兩個集合的并集。請注意,這個示例使用的是數字鍵名的數組。如果你需要使用字符串鍵名或其他類型的鍵名,請根據實際情況進行調整。