Is there a way to check if there are multiple entries in an array (Identical Values)?
Thanks!
You can use [man]array_count_values/man and check if any value in the resultant array is greater than 1.
Alternatively, you can use [man]array_unique/man and check if the size of the resultant array is less than the original array.
I think LL meant arraycountvalues().
Yes, and fixed.
Thanks again!