สวัสดีฉันกำลังพยายามรวมสองอาร์เรย์และต้องการลบค่าที่ซ้ำกันออกจากอาร์เรย์สุดท้าย
นี่คือ Array 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
)
ฉันต้องการลบรายการที่ซ้ำกันเหล่านี้ออกหรือฉันสามารถลบออกก่อนที่จะรวมเข้าด้วยกัน ... ขอความช่วยเหลือ .. ขอบคุณ !!!!!!!