Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
This should be useful i think: php.net/manual/en/function.array-count-values.php – Alvar FinSoft Soome Nov 26 '12 at 16:41

2 Answers

up vote 3 down vote accepted
<?php
  $a = array('a', 'b', 'c', 'a');
  if (count(array_unique($a)) > 1) {
  }
share|improve this answer
You could leave out the call to array_values. – deceze Nov 26 '12 at 16:42
Of course I can, good call! – Rawkode Nov 26 '12 at 16:42

If you want to go the more manual way:

<?php
$array = array(3, 3, 3, 3);
$different = false;
for($i=1;i<count($array);i++)
{
    if($array[$i] != $array[$i-1])
    {
        $different = true;
    }
}
?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.