こんにちは2つの配列をマージしようとしています。また、最終的な配列から重複する値を削除したいと考えています。
これが私のアレイ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
両方の配列を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
[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
)
これらの重複するエントリを削除したいのですが、マージする前に削除できます...どうぞよろしくお願いします。ありがとう!!!!!!!