Created
May 9, 2018 17:22
-
-
Save yurimorales/f25e4fd11e423b711fa25917dd2aa57a 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
$file = new SplFileObject("filename.txt"); | |
$file->seek(9); // so it's line 10 | |
echo $file->current(); // outputs line 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment