file()関数などでメモリをバカ食いしたくない時におすすめ。
$filePath = '/path/to/file.txt'; $count = exec('wc -l '.$filePath); $count = trim(str_replace($filePath, '', $count));
こんな感じで取得可能。
file()関数などでメモリをバカ食いしたくない時におすすめ。
$filePath = '/path/to/file.txt'; $count = exec('wc -l '.$filePath); $count = trim(str_replace($filePath, '', $count));
こんな感じで取得可能。