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.

Well you know I can use this:

<?php
$myfile = 'myfile.txt';
$command = "tac $myfile > /tmp/myfilereversed.txt";
exec($command);
$currentRow = 0;
$numRows = 20;  // stops after this number of rows
$handle = fopen("/tmp/myfilereversed.txt", "r");
while (!feof($handle) && $currentRow <= $numRows) {
   $currentRow++;
   $buffer = fgets($handle, 4096);
   echo $buffer."<br>";
}
fclose($handle);
?>

But doesn't it copy the whole file to memory?

A better approach maybe fread() but it uses the bytes so might also not be the a good approach too.

My file can go into around 100MB so I want it.

share|improve this question
See: stackoverflow.com/questions/1510141/… – Josh Jul 1 '11 at 18:23
Have a look here: stackoverflow.com/a/15025877/995958 – lorenzo-s Mar 17 at 18:50

3 Answers

up vote 2 down vote accepted

If you're already doing stuff on the command line, why not use tail directly:

$myfile = 'myfile.txt';
$command = "tail -20 $myfile";
$lines = explode("\n", shell_exec($command));

Not tested, but should work without PHP having to read the whole file.

share|improve this answer
A bit of explanation please :D – kritya Jul 1 '11 at 18:28
man tail from terminal/bash ;). Source php manual for shell_exec. – Alfred Jul 1 '11 at 18:33
@kritya: tail with -n <x> returns the last <x> lines from a file... – KingCrunch Jul 1 '11 at 22:16
The best way to do this :) – tasmaniski Dec 11 '12 at 14:23

Try applying this logic as it might help: read long file in reverse order fgets

share|improve this answer
Dude read my question carefully i alreaded put that comment -.- – kritya Jul 1 '11 at 18:30
@kritya: You did, "dude"? – Lightness Races in Orbit Jul 1 '11 at 21:47

Most f*()-functions are stream-based and therefore will only read into memory, what should get read.

As fas as I understand you want to read the last $numRows line from a file. A maybe naive solution

$result = array();
while (!feof($handle)) {
  array_push($result, fgets($handle, 4096));
  if (count($result) > $numRows) array_shift($result);
}

If you know (lets say) the maximum line length, you can try to guess a position, that is nearer at the end of the file, but before at least $numRows the end

$seek = $maxLineLength * ($numRows + 5); // +5 to assure, we are not too far
fseek($handle, -$seek, SEEK_END);
// See code above
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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