Jump to content

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.