array_multisort() should work fine for that.
Here's an example of how you could use it...
code:
$songs = array(); // Your data would be in here
$artists = array(); // Temporary array
foreach($songs as $key => $song) {
// Copy the first artist name
$artists[$key] = $song['artist'][0];
}
array_multisort($artists, $songs);