PHP 에서 배열의 중복값 제거 함수 array_unique > 개발

본문 바로가기
사이트 내 전체검색

개발

PHP 에서 배열의 중복값 제거 함수 array_unique

페이지 정보

profile_image
작성자 관리자 (110.♡.0.34)
댓글 0건 조회 2,312회 작성일 21-04-12 20:34

본문

PHP 에서 배열의 중복값을 제거하는 함수로 array_unique 가 있다.

이 함수는 다차원 배열의 중복값도 제거할 수 있다.
$newArray = array_unique($tmpArray, SORT_REGULAR);


https://www.php.net/manual/en/function.array-unique.php


# array_unique
(PHP 4 >= 4.0.1, PHP 5, PHP 7, PHP 8)

array_unique — Removes duplicate values from an array

Description ¶
array_unique ( array $array , int $flags = SORT_STRING ) : array
Takes an input array and returns a new array without duplicate values.

Note that keys are preserved. If multiple elements compare equal under the given flags, then the key and value of the first equal element will be retained.

Note: Two elements are considered equal if and only if (string) $elem1 === (string) $elem2 i.e. when the string representation is the same, the first element will be used.

Parameters ¶
array
The input array.

flags
The optional second parameter flags may be used to modify the sorting behavior using these values:

Sorting type flags:

SORT_REGULAR - compare items normally (don't change types)
SORT_NUMERIC - compare items numerically
SORT_STRING - compare items as strings
SORT_LOCALE_STRING - compare items as strings, based on the current locale.
Return Values ¶
Returns the filtered array.



## 참고
https://www.php.net/manual/en/function.array-unique.php
https://zxchsr.tistory.com/103

추천0

댓글목록

등록된 댓글이 없습니다.

Total 386건 5 페이지
  • RSS
개발 목록
번호 제목 조회 추천 날짜
3062956004-29
3052186004-29
3042135004-29
3032828004-28
3022500004-28
3013958004-28
3001971004-25
2993028004-22
2981873004-14
2972330004-14
열람중2313004-12
2953262004-11
2942239004-07
2932982004-07
2923262003-25
2913356003-24
2903255003-06
2892309003-06
2882306003-01
2871701002-27

검색


사이트 정보

Copyright © Baragi.Net. All rights reserved.