I have searched and tried many different "remove duplicates from array" functions but none have worked out for my case. I'm trying to remove a specific duplicate from an array.
From below I would like to remove the duplicates of "PHASER 4600" .
[0] => Array
(
[id] => 1737
[product_name] => PHASER 4200
[certification_date] => 3/20/12
)
[1] => Array
(
[id] => 1738
[product_name] => PHASER 4600
[certification_date] => 3/20/12
)
[2] => Array
(
[id] => 1739
[product_name] => PHASER 4600
[certification_date] => 3/20/12
)
[3] => Array
(
[id] => 1740
[product_name] => PHASER 4700
[certification_date] => 3/20/12
)
[4] => Array
(
[id] => 1741
[product_name] => PHASER 4800
[certification_date] => 3/20/12
)