vote up 1 vote down star
1

I'm guessing it's fgets, but I can't find the specific syntax. I'm trying to read out (in a string I'm thinking is easier) the last line added to a log file.

flag

57% accept rate

6 Answers

vote up 4 vote down check

The simplest naive solution is simply:

$file = "/path/to/file";
$data = file($file);
$line = $data[count($data)-1];

Though, this WILL load the whole file into memory. Possibly a problem (or not). A better solution is this:

$file = escapeshellarg($file); // for the security concious (should be everyone!)
$line = `tail -n 1 $file`;
link|flag
spot on, thanks Matthew – WiseDonkey Jun 30 at 9:47
FYI, i did use tail... – WiseDonkey Jun 30 at 9:48
Note that this is very unsafe unless you are using escapeshellarg(): de.php.net/manual/en/… – soulmerge Jun 30 at 9:49
Correction, it's only unsafe if you're accepting user input as the file path (and then you should be doing all sorts of things to validate it). If you use a constant like in the example, then it's perfectly fine and you can save yourself a function call. Of course, it's probably not a bad idea anyway, just to get in the habit. – Matthew Scharley Jun 30 at 9:53
I hate to harp on about this, but not as to start another question. When I get the last line and it's unique, it's fine. But, with this... when i get the last line and the few few parts of the line are identical to the last, it seems to think the lines are all part of one. Is this something you can avoid? – WiseDonkey Jun 30 at 10:01
show 5 more comments
vote up 0 vote down

You either have to read the file in line by line and save the last read line to get it.

Or if on unix/linux you might consider using the shell command tail

tail -n 1 filename
link|flag
vote up 5 vote down

This looks like it is what you are looking for:

tekkie.flashbit.net: Tail functionality in PHP

It implements a function that uses fseek() with a negative index to roll up the file from the end. You can define how many lines you want to be returned.

link|flag
Iiinteresting... but utterly useless next to the much easier method of just shelling the issue over to tail (unless you really are on a very seriously overworked server) – Matthew Scharley Jun 30 at 10:07
2  
"utterly useless" is a bit harsh – Tomalak Jun 30 at 10:17
Ok, perhaps a little... still, I'd be disinclined to use it, unless someone could prove to me that using tail was actually what was causing bottlenecks and not the operations on large databases. – Matthew Scharley Jun 30 at 13:55
Now what have "operations on large databases" to do with the issue? If compare something then the performance of an efficient language native implementation vs. using the shell tail .... ;-) – Tomalak Jun 30 at 15:04
Well crud, now you're going to make me go benchmark them aren't you... 'cause I'm curious... – Matthew Scharley Jul 3 at 9:58
show 1 more comment
vote up 0 vote down

If you want to read a file line by line the file function reads the contents of a file, line by line and returns each line as an element of an array.

So you could do something simple like:

$lines    = file('log.txt');
$lastLine = array_pop($lines);
link|flag
3  
Really? For a multi-megabyte log file of which 99.99% is of no interest to me I would try to avoid loading all of it into an array just to throw it away immediately. – Tomalak Jun 30 at 9:44
No denying that this is inefficient, but it works; and who knows how long the file is? I would use the tail command in my environment, but WiseDonkey didn't specify any. That's a nice function you linked to, though. – Kieran Hall Jun 30 at 9:52
1  
file() and file_get_contents() are both great file manipulation functions, specially if you know the files involved are relatively small and just want to do something quickly and easily. – Matthew Scharley Jun 30 at 9:56
@Matthew Scharley: The OP spoke of log files. These are the opposite of "relatively small" most of the time. – Tomalak Jun 30 at 10:18
vote up 1 vote down
define('YOUR_EOL', "\n");
$fp = fopen('yourfile.txt', 'r');

$pos = -1; $line = ''; $c = '';
do {
    $line = $c . $line;
    fseek($fp, $pos--, SEEK_END);
    $c = fgetc($fp);
} while ($c != YOUR_EOL);

echo $line;

fclose($fp);

This is better, since it does not load the complete file into memory...

Set YOUR_EOL to your correct line endings, if you use the same line endings as the default line endings of the OS where your script resides, you could use the constant PHP_EOL.

link|flag
vote up 0 vote down

This one wont break for a 1 or 0 line file.

function readlastline($fileName)
{

       $fp = @fopen($fileName, "r");
       $begining = fseek($fp, 0);      
       $pos = -1;
       $t = " ";
       while ($t != "\n") {
             fseek($fp, $pos, SEEK_END);
             if(ftell($fp) == $begining){
              break;
             }
             $t = fgetc($fp);
             $pos = $pos - 1;
       }
       $t = fgets($fp);
       fclose($fp);
       return $t;
}
link|flag

Your Answer

Get an OpenID
or

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