0

How to read files from bottom up in php?Is there something like stream in java which will read file incrementally but just backwards. Because my files can get up to 650 mb.

Gandalf StormCrow
  • 25,788
  • 70
  • 174
  • 263
  • Check this answer: http://stackoverflow.com/questions/3234580/read-a-file-backwards-line-by-line-using-fseek/3234857#3234857 – powtac Jul 12 '11 at 20:22

1 Answers1

1

PHP has streams. See: http://php.net/manual/en/book.stream.php

Daniel A. White
  • 187,200
  • 47
  • 362
  • 445