in PHP, how do I check if at least 1 item in an array differs from the rest? eg.
$array(3, 3, 3, 3); // returns false
$array(3, 3, 5, 3, 2); // returns true
$array(3, 3, 5, 3, 3); // returns true
The array has an indefinite number of items. Is there an algorithm for this?
Thanks