PHP-将两个数组合并为一个数组(也删除重复项)
嗨,我正在尝试合并两个数组,并且还想从最终数组中删除重复的值。
这是我的数组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
)
我要删除这些重复的条目,或者在合并之前删除它们…请帮助。.谢谢!!!
回答:
array_unique(array_merge($array1,$array2), SORT_REGULAR);
http://se2.php.net/manual/zh/function.array-
unique.php
以上是 PHP-将两个数组合并为一个数组(也删除重复项) 的全部内容, 来源链接: utcz.com/qa/423711.html