str_word_count
PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8
str_word_count - Return information about words used in a string
Example #1 A str_word_count example
Result: Array
(
[0] => Hello
[1] => fri
[2] => nd
[3] => you're
[4] => looking
[5] => good
[6] => today
)
Array
(
[0] => Hello
[6] => fri
[10] => nd
[14] => you're
[29] => looking
[46] => good
[51] => today
)
Array
(
[0] => Hello
[1] => fri3nd
[2] => you're
[3] => looking
[4] => good
[5] => today
)
7
Example #2 of str_word_count