Skip to content

Instantly share code, notes, and snippets.

@yurimorales
Created May 9, 2018 17:21
Show Gist options
  • Save yurimorales/2b066e8ce4581a5404ded774e0062ebf to your computer and use it in GitHub Desktop.
Save yurimorales/2b066e8ce4581a5404ded774e0062ebf to your computer and use it in GitHub Desktop.
$linesIterator = new LimitIterator(
new SplFileObject("filename.txt"),
9, // start at line 10
20 // iterate 20 lines
);
foreach ($linesIterator as $line) {
echo $line; // outputs line 10 to 30
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment