Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Полная версия в файле group_words.php
- $alltexts = implode(" ", $arttext);
- $words = explode(" ", $alltexts);
- $num_words = count($words);
- echo "Слов всего: $num_words<br><br>\n";
- //var_dump($words);
- $count_aray = array_count_values($words);
- arsort($count_aray);
- echo "<pre>";
- var_dump($count_aray);
- echo "</pre>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement