|
str_word_countReturn information about words used in a string Description
arrayint str_word_count(string
$string , int $format = 0, stringnull $characters = null )
Counts the number of words inside For the purpose of this function, 'word' is defined as a locale dependent string containing alphabetic characters, which also may contain, but not start with "'" and "-" characters. Note that multibyte locales are not supported. Parameters
Return Values
Returns an array or an integer, depending on the
Changelog
Examples
Example #1 A str_word_count example
The above example will output: 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 See Also
|