Hello Guys I try to short the content of a post in a preview page. I have tried out the code and it doesn't work. It shows only an 'array' as text. Is this echo wrong or any other failures?
$word=Hello World;
$words = str_word_count($word, 1,'ŠŒŽšœžŸ¥µÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýÿ');
$len = min(50, count($words));
$first_fifty = array_slice($words, 0, $len);
echo $first_fifty;
Thanks for Help...