str_word_count.php : str_word_count « String « PHP
- PHP
- String
- str_word_count
str_word_count.php
<?php
$summary = <<< summary
this is a test. this is a test. this is a test. this is a test. this is a test. this is a test.
this is a test. this is a test. this is a test. this is a test. this is a test. this is a test.
this is a test. this is a test. this is a test. this is a test. this is a test. this is a test.
summary;
$words = str_word_count($summary);
echo "Total words in summary: $words";
?>
Related examples in the same category