$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?
|
see: array_count_values Like:
Output:
Usage:
|
|||||||||
|
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