I have an array of numbers and many repeat, how to list all items in order of maximum occurence?
To do this you will want to use the excellent built-in PHP function called array_count_values that saves the hassle of coding this yourself like you have to do in many other languages.
Again this is one of the great things about PHP, there is a function in place to do most common tasks so that you don't have to write the code yourself!
Here is more information on the use of array_count_values and a worked example:
http://www.php-questions.com/phpfaq/answer103
Comment on this Question and Answer >>>
ASK A QUESTION
More arrays PHP Questions
How do I remove an element from an array without changing the index values for the rest of the array?How can I loop through the members of an array?
How can I sort an array keeping the correlation between the index and value?
I want to invert my array, can I do this?
How do I add to the beginning of an array and find the number of elements in it?
