Re: Array sort question

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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');

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux