Jump to content

[SOLVED] reading backwards


-entropyman

Recommended Posts

Hello,

 

I was just wondering if it would be possible to read a file backwards.  For example I am reading a file using file_get_contents and outputting all the line matches that contain the results.  Is there a way to read the file backwards, ie the result that would be return last normally would now return first?  Or order the results as such?  Any ideas?

 

Thanks

 

:)

 

Link to comment
https://forums.phpfreaks.com/topic/116118-solved-reading-backwards/
Share on other sites

if you're doing it line by line you could use file() instead of file_get_contents. That will read your entire file and put it into an array (one line per element) instead of a giant string like what file_get_contents does.  Then you can array_reverse the array and loop through it.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.