• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

How do I reverse sort?

dorothyc

New Member
I mean...
how do I make the items with a higher value in the array go to the bottom of the list instead of the top?

Thanks
 
the proper way to do this is..

@array = sort { $b <=> $a } @array;

that will sort by numbers in descending order.. (higher to lower)
 
Back
Top