在PHP中,可以使用array_unique()
函數來去除數組中的重復值。該函數會返回一個新的數組,其中只包含原數組中的不重復元素。
例如,假設有一個包含重復元素的數組:
$numbers = array(1, 2, 3, 2, 4, 3, 5);
可以使用array_unique()
函數去除重復元素:
$uniqueNumbers = array_unique($numbers);
$uniqueNumbers
將會是一個新的數組,其中只包含不重復的元素:
Array
(
[0] => 1
[1] => 2
[2] => 3
[4] => 4
[6] => 5
)