PHPの配列から重複した要素を削除したいと思います。配列の構造は次のとおりですPHPの配列から重複を削除する
Array
(
[0] => Array
(
[0] => [email protected]
[1] => [email protected]
[2] => [email protected]
[3] => [email protected]
[4] => [email protected]
[5] => [email protected]
[6] => [email protected]
[7] => [email protected]
)
)
どのようにすればいいですか?
は、このデータは、SQLを使用してテーブルから引き戻されているのですか?そうであれば問題は解決されませんでしたか?一意の応答のみを受信する(GROUP BY) – Aleski
array_uniqueをPHPの – Prabhuram