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.
$items = explode(',',$product); // values is 4,2,4,2,2,4

$unique_items=array_unique($items); // gives me 4,2

What code should be next to give me 4 = 3 , 2 = 3 and store the number of values to a variable?

share|improve this question
Do a loop, for n-times (n being the number of elements in $items), then. extract each character at $i ($i would be the current number of loops, also the offset into the string, that is you do for($i=0; i<count($items); $i++){...}) and match that character to each element inside $unique_items, increase a counter variable each time the character inside $unique_items and $items[$i] match, and that's it! You can figure out the code yourself, since I'm a bit rusty with php commands. – destiel starship Jun 20 '11 at 7:44

2 Answers

see: array_count_values

Like:

$occurences = array_count_values($items);
print_r($occurences);

Output:

Array
(
    [4] => 3
    [2] => 3
)

Usage:

echo $occurences[4]; // outputs 3
share|improve this answer
how to store the value of 3 to a variable? tnx – yohdaman Jun 20 '11 at 7:39
@yohdaman See the updated code. You have all the information in $occurences. If you want to access them, use: $occurences[4] for example. – Yoshi Jun 20 '11 at 7:42
tnx to all!! very much appreciated. =) – yohdaman Jun 20 '11 at 7:45
Great answer, i learned something new today! =D – etbal Jun 20 '11 at 9:10

You're probably looking for array_count_values() function.

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.