我想顯示數組中的所有數據,但除了重複的數據外。使用PHP刪除數組中的重複值
我的數組是這樣的:
array (size=4)
0 => string 'Eclairage Public' (length=16)
1 => string 'Fonte de Voirie' (length=15)
2 => string 'Aire de jeux' (length=12)
3 => string 'Aire de jeux' (length=12)
4 => string 'Fonte de Voirie' (length=15)
我想這隻能說明:
array (size=4)
0 => string 'Eclairage Public' (length=16)
1 => string 'Fonte de Voirie' (length=15)
2 => string 'Aire de jeux' (length=12)
正如你所看到的,重複的元素被移除。我怎樣才能使用PHP來實現這一點?
http://php.net/array_unique –