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

3 lines
99 B
PHP
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
$list = array(1, 2, 3, 'a', 'b', 'c', 2, 3, 4, 'b', 'c', 'd');
$unique_list = array_unique($list);