Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
PHP: read last line from file

The file is is really big and it is updating frequently. All I want to do is get the last line inserted. Is there a way to read from a file without PHP storing the whole file in memory? Just the fastest way to get the last line inserted.

Thank you.

share|improve this question
3  
Same as PHP: read last line from file. – Matthew Flaschen Mar 24 '11 at 1:07

marked as duplicate by Matthew Flaschen, Andrey, Brian Roach, Daniel A. White, Lightness Races in Orbit Mar 24 '11 at 1:11

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

function readlastline() 
{ 
       $fp = @fopen("/dosmnt/LOGFILE.DAT", "r"); 
       $pos = -1; 
       $t = " "; 
       while ($t != "\n") { 
             fseek($fp, $pos, SEEK_END); 
             $t = fgetc($fp); 
             $pos = $pos - 1; 
       } 
       $t = fgets($fp); 
       fclose($fp); 
       return $t; 
} 

Source: http://forums.devshed.com/php-development-5/php-quick-way-to-read-last-line-156010.html

share|improve this answer
If the file is being written to constantly, you may want to store the current length of the file at the start before seeking backwards from that position. That way you're guaranteed to find a complete line even if more lines are added while you're seeking. If performance is a consideration, you can grab chunks instead of seeking byte-by-byte. – David Harkness Mar 24 '11 at 1:11

Untested code from the comments of http://php.net/manual/en/function.fseek.php

jim at lfchosting dot com 05-Nov-2003 02:03
Here is a function that returns the last line of a file.  This should be quicker than reading the whole file till you get to the last line.  If you want to speed it up a bit, you can set the $pos = some number that is just greater than the line length.  The files I was dealing with were various lengths, so this worked for me. 

<?php 
function readlastline($file) 
{ 
        $fp = @fopen($file, "r"); 
        $pos = -1; 
        $t = " "; 
        while ($t != "\n") { 
              fseek($fp, $pos, SEEK_END); 
              $t = fgetc($fp); 
              $pos = $pos - 1; 
        } 
        $t = fgets($fp); 
        fclose($fp); 
        return $t; 
} 
?>
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.