Я хочу посчитать количество слов в текстовом файле. ниже мой код, который я пробовал. Код php работает нормально, но он также учитывает пробелы. что я должен добавить, чтобы код не учитывал пробелы. Мой php код:
<?php
$count = 0;
//Opens a file in read mode
$file = fopen("trial.txt", "r");
//Gets each line till end of file is reached
while (($line = fgets($file)) !== false) {
//Splits each line into words
$words = explode(" ", $line);
//Counts each word
$count = $count + count($words);
}
print("Number of words : " . $count);
fclose($file);
?>