Date: 10/25/05 (PHP Community) Keywords: no keywords Whats the best the way to elliminate the duplicate array entries?
Array
(
[0] => Array
(
[0] => effe7ec6a86cebbf6873de64ff54df36
[ID] => effe7ec6a86cebbf6873de64ff54df36
[1] => 15553075555
[TagPhone] => 1555305555
[2] => Bill
[TagSpokenName] => Bill
[3] => 29
[TimeZone_ID] => 29
[4] => bill@email.com
[TagEmail] => bill@email.com
[5] => 32
[ACCOUNT_ID] => 32
)
[1] => Array
(
[0] => 0d604cf13300a5253b7a317420f63f99
[ID] => 0d604cf13300a5253b7a317420f63f99
[1] => 15553075555
[TagPhone] => 155553075555
[2] => Bill
[TagSpokenName] => Bill
[3] => 0
[TimeZone_ID] => 0
[4] => bill@email.com
[TagEmail] => bill@email.com
[5] => 32
[ACCOUNT_ID] => 32
)
}
Here is a solution I came up with:
Source: http://www.livejournal.com/community/php/357837.html
|