str_word_count --
Return information about words used in a string
Syntax
mixed str_word_count ( string string [, int format [, string charlist]] )
Counts the number of words inside string.
If the optional format is not specified, then
the return value will be an integer representing the number of words
found. In the event the format is specified, the return
value will be an array, content of which is dependent on the
format. The possible value for the
format and the resultant outputs are listed below.
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.
Parameters
string
The string
format
Specify the return value of this function. The current supported values
are:
0 - returns the number of words found
1 - returns an array containing all the words found inside the
string
2 - returns an associative array, where the key is the numeric
position of the word inside the string and
the value is the actual word itself
charlist
A list of additional characters which will be considered as 'word'
Return Values
Returns an array or an integer, depending on the
format chosen.
ChangeLog
Version
Syntax
5.1.0
Added the charlist parameter
Examples
Example 1. A str_word_count() example
<?php
$str = "Hello fri3nd, you're looking good today!";
str word count php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php str word count syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.