The following simple code count the number of lines in a text file.
public function countLinesInTextFile($address)
{
return count(file($address));
}
print countLinesInTextFile('file.txt');
The following simple code count the number of lines in a text file.
public function countLinesInTextFile($address)
{
return count(file($address));
}
print countLinesInTextFile('file.txt');