0;
});
uasort($albums, function ($a, $b) {
return strcmp($a["title"], $b["title"]);
});
uasort($albums, function ($a, $b) {
return strcmp($a["artist"], $b["artist"]);
});
uasort($albums, function ($a, $b) {
return getMatches($b) - getMatches($a);
});
$songs = array_filter($songs, function ($i) {
return getMatches($i) > 0;
});
uasort($songs, function ($a, $b) {
return getMatches($b) - getMatches($a);
});
?>