Is there a better way to achieve the following:
array_unique(array_merge($array_one, $array_two))
That is, merge two arrays and only have unique values.
array_merge seems to merge uniquely for keys, but i need unique values and can not see a built in function that does this.
I understand 'better' may be subjective. Im thinking purely in the fact that im using two array functions wraped to get the values.