RosettaCodeData/Task/Remove-duplicate-elements/PHP/remove-duplicate-elements.php

3 lines
99 B
PHP

$list = array(1, 2, 3, 'a', 'b', 'c', 2, 3, 4, 'b', 'c', 'd');
$unique_list = array_unique($list);