안녕하세요, 두 개의 배열을 병합하고 최종 배열에서 중복 값을 제거하려고합니다.
다음은 내 어레이 1입니다.
Array
(
[0] => stdClass Object
(
[ID] => 749
[post_author] => 1
[post_date] => 2012-11-20 06:26:07
[post_date_gmt] => 2012-11-20 06:26:07
)
그리고 이것은 내 배열 2입니다.
Array
(
[0] => stdClass Object
(
[ID] => 749
[post_author] => 1
[post_date] => 2012-11-20 06:26:07
[post_date_gmt] => 2012-11-20 06:26:07
)
array_merge
두 배열을 하나의 배열로 병합하는 데 사용 하고 있습니다. 다음과 같은 출력을 제공합니다.
Array
(
[0] => stdClass Object
(
[ID] => 749
[post_author] => 1
[post_date] => 2012-11-20 06:26:07
[post_date_gmt] => 2012-11-20 06:26:07
[1] => stdClass Object
(
[ID] => 749
[post_author] => 1
[post_date] => 2012-11-20 06:26:07
[post_date_gmt] => 2012-11-20 06:26:07
)
중복 된 항목을 제거하거나 병합하기 전에 제거 할 수 있습니까? 도와주세요 .. 감사합니다 !!!!!!!