【PHP】ファイルの行数を求める。

file()関数などでメモリをバカ食いしたくない時におすすめ。

$filePath = '/path/to/file.txt';
$count = exec('wc -l '.$filePath);
$count = trim(str_replace($filePath, '', $count));

こんな感じで取得可能。