<?php
$str = "Hello fri3nd, you're
looking good today!";
print_r(str_word_count($str, 1));
print_r(str_word_count($str, 2));
print_r(str_word_count($str, 1, 'àáãç3'));
echo str_word_count($str);
?>
str_word_count('2 words', 0, '0123456789')
<?php
echo str_word_count("Hello world!"); // outputs 2
?>