Re: [PHP] sorting array after array_count_values

2006-08-15 Thread Richard Lynch
On Tue, August 15, 2006 9:01 am, [EMAIL PROTECTED] wrote: > I have an array of products $products > $products = array_count_values($products); > now I have an array where $key is product number and $value is how > many > times I have such a product in the array. > I want to sort this new array that

[PHP] sorting array after array_count_values

2006-08-15 Thread afan
hi to all! I have an array of products $products $products = array_count_values($products); now I have an array where $key is product number and $value is how many times I have such a product in the array. I want to sort this new array that product with the most "duplicates" are on the first place