2 lines
99 B
PHP
2 lines
99 B
PHP
$list = array(1, 2, 3, 'a', 'b', 'c', 2, 3, 4, 'b', 'c', 'd');
|
|
$unique_list = array_unique($list);
|