Remove duplicates from echo output in PHP
Right now the below function outputs all variations images of a product. E.g. 3x blue (size S, M, L), 3x red (size S, M, L) I would like the below function to only output unique color images. E.g. 1x blue, 1x red Tried to use array_unique in the echo string but could not get it … Read more