On 28/02/06, jblanchard@xxxxxxxxxxxxxx <jblanchard@xxxxxxxxxxxxxx> wrote:> The array sorting suggestions you provide will not sort based on the> number of items in each array, which is what the OP wanted. That's not entirely fair. I would have said his usort() suggestion wasa better pointer than a link to count() - which gives no hint as tohow to sort the list, which is after all what the OP's trying to do. ObSuggestion: function byLength($a, $b){ return sizeof($a) - sizeof($b);} usort($rgArray, 'byLength');