Skip to content
Advertisement

Tag: arrays

PHP: Delete unique values from an array

I would like to delete all unique values from an array. So lets say I have $array = (1,2,3,5,4,3,4,5,234) the function should delete all unique values and output: $newarray = (3,5,4,3,4,5) I just …

Advertisement