Gandalf StormCrow
Gandalf StormCrow

Reputation: 26222

How to read file(bigger) in php from bottom up

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.

Upvotes: 0

Views: 495

Answers (1)

Daniel A. White
Daniel A. White

Reputation: 191058

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

Upvotes: 1

Related Questions