How to Find Number of Words in a String in PHP

In this tutorial we will learn How to Find Number of Words in a String in PHP. PHP str_word_count() function can be used to count number of words in string.

Using str_word_count() Function

We can simply use str_word_count() Function to count number of words in a string using PHP.

str_word_count() Function is a built-in PHP function which counts the number of words in a string.

Take a look at the code given below.

<?php
$string = 'This is HowToCodeSchool';
$wordsCount = str_word_count($string);
echo $wordsCount;
?>

$wordsCount variable contains the number or count of words in the original string.

Output

3

str_word_count() Function can also return an array with all words inside it from the main string.

<?php
$string = 'This is HowToCodeSchool';
$wordsCount = str_word_count($string , 1);
print_r($wordsCount);
?>

Output

Array ( [0] => This [1] => is [2] => HowToCodeSchool )

str_word_count() Function is supported in PHP 4.3+ versions, so you can use it anywhere.

How To Remove Empty Array Elements with PHP How To Remove Common Values from two Arrays with PHP How To Find sum of array values with PHP How To Shuffle array Values in PHP How to Remove Duplicate Values from an array with PHP PHP Sort Associative array by Key PHP Sort Associative array by Value Sort array in numerical order with PHP Sort array in alphabetical order with PHP Sort array in descending order PHP Sort array in ascending order in PHP How to merge two or more arrays in PHP Add elements to the end of an array in PHP Add elements to the start of an array in PHP PHP Remove First Element from an Array PHP Remove Last Element from an Array Check if Key Exists in array PHP Check if Value exists in array PHP How to reverse an array in PHP PHP Print array line by line PHP Echo array values using foreach loop Count array values in PHP PHP Count How Many Times Word appears in String How to Reverse a String with PHP Check if Variable is Null in PHP