관리 메뉴

웹개발자의 기지개

[php] 배열내 요소들 중복제거하고 유니크하게 array_unique() 본문

PHP

[php] 배열내 요소들 중복제거하고 유니크하게 array_unique()

http://portfolio.wonpaper.net 2020. 4. 21. 22:38
1
2
3
4
5
6
7
8
<?
$test  = array("1", 2", "2", "3", "4", "4", "5", "5", "5");
$test2 = array_unique($test);
// index정리
$test2 = array_values($test2);
 
print_r($test2);
?>
cs

 

 

Comments