Since speculation gets the check around here, I'm going to bet that they're roughly equal. PHP calculations are definitely faster, and we don't use PHP to SELECT data, but they both have lots of good array functions.
HOWEVER we do have the problem with query length.
For example, assuming it was faster to sort an array with PHP, and you did the PHP equivalent of DISTINCT, if you're dealing with a tons of rows, that's going to be one awesome (literal use) query.
On that basis, it's probably best to SELECT with ORDER BY, or it's going to take forever to interpret that query.
Actual answer in this badly, badly, badly thanked question Why does the PHP run faster than MySQL.
He supposedly timed MySQL incorrectly.
Then again, digg had some other things to say: http://highscalability.com/blog/2010/3/23/digg-4000-performance-increase-by-sorting-in-php-rather-than.html
Then again, if PHP truly is faster, you could always break up your SELECTs.