What would be the most efficient way of either removing dups or creating new array with no dups? Are there any built in PHP functions that save this manual removal?
[2013-05-27 22:35:55]: Array
(
[0] => stdClass Object
(
[type] => 1
[val] => 1111
)
[1] => stdClass Object
(
[type] => 1
[val] => 2222
)
[2] => stdClass Object
(
[type] => 1
[val] => 1111
)
[3] => stdClass Object
(
[type] => 1
[val] => 2222
)
)
Many thanks, Luke