Created
May 9, 2018 17:21
-
-
Save yurimorales/2b066e8ce4581a5404ded774e0062ebf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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