Sorting of tag_cloud()

I was just about to ask how to sort the tag cloud then the obvious answer came to mind and I figured I'd share it here in case someone else is looking:

<?php
sort($tags,SORT_STRING);
echo tag_cloud($tags, 'items/browse');
?>