function text_cloud ($text, $num
{
$words = word_counts$text);
arsort$words);
$words = array_splice$words, 0, $num);
ksort$words);
return tag_cloud$words);
}
eXorithm – Execute Algorithm: View / Run Algorithm text_cloud

function text_cloud ($text, $num
{
$words = word_counts$text);
arsort$words);
$words = array_splice$words, 0, $num);
ksort$words);
return tag_cloud$words);
}