0

I would like to count rows of text file (.txt) after specific row.
Example: I want after row 10 then row 11 until end will be count.
Is it possible?
What I've tried:
$files = "log.txt";
echo count(file($files));
But as you know it will count all rows.
What I want is, after row 10 then row ...