Write a PHP program to count the words in the string
Description:
Write a PHP program to count the words in the string.
Instructions:
- You can use only one variable.
- You can use PHP built-in String Function.
View Solution/Program
<?php
$sample_words = "This is Tutorials Class, learn programming tutorials here.";
echo str_word_count($sample_words);
?>
Tutorials Class - Output Window
8
Learn more about the similar topics:
Tutorials |
---|
PHP String Handling |
Interview Questions & Answers |
---|
No Content Found. |