Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im trying to get a count in a foreach

like this in the array Item 1 Item 1 Item 2 Item 3 Item 3 Item 3 Item 3

Now these items comes from an explode

 $likes = explode(',', $user_likes);

then i have

foreach($likes as $like){

  echo $like.'<br>';

}

What i want as output is

item 1 (2) item 2 (1) item 3 (4)

So no double items but with how many times that item is in the array

share|improve this question

closed as not a real question by Jack Maney, Ricardo Lohmann, Wouter J, C. A. McCann, melpomene Dec 17 '12 at 22:44

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

up vote 1 down vote accepted

Do

print_r(array_count_values($likes));

If you want it to be formatted like item 1 (2) item 2 (1), etc, do the following:

$valueCount = array_count_values($likes);
foreach ($valueCount as $key => $value) {
    echo $key." (".$value.") ";
}
share|improve this answer
Thanks this is what i was looking for but can you help me with sorting for highest number to lowest ? – Jeffrey Lang Dec 17 '12 at 21:11
see php.net/manual/en/function.arsort.php. Set $valueCount = arsort(array_count_values($likes)); – user1152309 Dec 17 '12 at 21:15
That dossen't seem to work Warning: Invalid argument supplied for foreach() i – Jeffrey Lang Dec 17 '12 at 21:24
$count = array_count_values($likes); arsort($count); this works thanks for your help – Jeffrey Lang Dec 17 '12 at 21:26

Try something like this :

$scores = array();

foreach($likes as $like){
    if(!isset($scores[$like]))
    {
        $scores[$like] = 1;
    }
    else
    {
        $scores[$like]++;
    }
}

print_r($scores);
share|improve this answer

This...

<?php

// Counter
$i = '0';

// Array
$array = 'apple, grape, pair, plum';
$array = explode(",", $array);

// Loop
foreach ($array as $value)
  {
      $i++;
      echo '<p>#' . $i . ' - ' . $value . '</p>';
  }

?>

Would output something like this...

#1 - apple

#2 - grape

#3 - pair

#4 - plum
share|improve this answer

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