Well...just out of curiosity, why aren't you using a hash? You can just do this:
$myArray = array(2 => "More Stuff", 1 => "Stuff", 3 => "Even More");
sort($myArray);
foreach($myArray as $element)
echo $element . "<BR>\n";
By using a hash, you can specify a key to sort by, rather than using a multidimensional array.