[PHP] 배열함수 array_unique() - 중복된 배열값 제거.
php 배열함수 array_unique 예제) 중복된 배열값을 제거한다. 문자나, 숫자의 배열값이 서로 중복으로 들어가 있을때에 그 중복값을 제거하고 표시하게 된다. "123, 1234" 의 값이 있다면 1234 로 값이 나오며, "사과, 배, 딸기, 사과, 배, 바나나, 포도" 의 값이 있다면 사과, 배, 딸기, 바나나, 포도 의 값이 나온다. array array_unique ( array $array [, int $sort_flags = SORT_STRING ] ) Takes an input array and returns a new array without duplicate values.Note that keys are preserved. array_unique() sorts the values ..